-
-
Notifications
You must be signed in to change notification settings - Fork 517
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
2.x Fix PHPStan issues on level 2 #2668
Conversation
With the changes in #2674, the |
# Conflicts: # phpstan.neon # src/Attachment.php # src/Post.php # src/Timber.php
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I went through all the code except the tests. That is not really (yet) in my ballpark.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for you work on this @gchtr. To pass PHPStan higher levels, we will probably have to be stricter regarding types, for method arguments as well as return types.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for you work on this @gchtr. To pass PHPStan higher levels, we will probably have to be stricter regarding types, for method arguments as well as return types.
Issue
There are various issues raised by PHPStan on level 2.
Solution
This pull request fixes some of them.
One special case was that for menu items, we set some properties dynamically. Menu items are
WP_Post
objects that are extended with the following properties:object_id
,menu_item_parent
,object
andtype
.To allow these properties to be written dynamically, I added a Class Reflection Extension for PHPStan. You can see this in the new
tests/phpstan/WPNavMenuItemPost.php
class.There are some issues that I couldn’t resolve yet.
Type is not subtype of native type
I didn’t know how to solve this one. Any help is welcome.
Access to undefined property on WP_Post
This is related to dynamically setting properties on a
WP_Post
object that will later be imported in thePost::get_info()
function. It would be better to set these properties on theTimber\Post
object after the other properties are imported. But there’s atimber/post/import_data
filter, which might rely on these properties.I think there are a couple of solutions:
WP_Post
and update the filter.Impact
More robust code.
Usage Changes
None.
Considerations
None.
Testing
Covered through existing tests.
Todo