Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "Attempt to read property on array in $module->id" warning with PHP 8.3 #713

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

mralaminahamed
Copy link

When using the Freemius WordPress SDK with PHP 8.3.6 and WordPress 6.5.2, the following warning is raised:

Warning: Attempt to read property "id" on array in plugins/helpie-faq/vendor/pauple/pluginator/src/Library/freemius/includes/managers/class-fs-plugin-manager.php on line 128

This appears to be caused by an issue with the handling of the $module variable in the load method of the FS_Plugin_Manager class.

Related Issues

Proposed Changes

In the load method, replace the following line:

} else if ( $this->_module_id == $module->id ) {

With this:

} else if ( isset( $module->id ) && $this->_module_id == $module->id ) {

This will ensure that $module is either an array or null, preventing the "Attempt to read property on array" warning when the value is not an array.

Testing

I have tested this change locally with PHP 8.3.6 and WordPress 6.5.2, and the warning is no longer raised. All existing tests in the SDK continue to pass.

Please review the proposed change and let me know if any additional testing or modifications are required.

In this pull request description, I have:

  1. Described the issue and provided the full warning message.
  2. Identified the likely cause of the issue (handling of $module variable).
  3. Proposed a specific code change to fix the issue, with a before and after code example.
  4. Mentioned that I have tested the change locally and that existing tests pass.
  5. Requested review from the maintainers and offered to make any additional changes as needed.

Please let me know if you would like me to modify any part of this pull request description. I have tried to provide a clear and detailed explanation of the issue, the proposed fix, and the testing performed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Warning with PHP 8.3.6
1 participant