-
-
Notifications
You must be signed in to change notification settings - Fork 83
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 incorrect argument type when @param
is not declared for all parameters of a function
#95
Conversation
@Ocramius I just pushed the changes. |
@ihor-sviziev The datatype should be checked first and if not declared then and only then PHPDocs can be checked. |
@IbrahimS2, as you can see, it works exactly in this way. The new case is added when NOT all arguments has their own argument type defined. |
@Ocramius, could you please review this pull request? |
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.
Besides minor adjustments, I think this is good to go
Add test coverage Signed-off-by: Ihor Sviziev <svizev.igor@gmail.com>
Fix the issue Signed-off-by: Ihor Sviziev <svizev.igor@gmail.com>
Apply suggestions from code review Signed-off-by: Ihor Sviziev <svizev.igor@gmail.com>
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 @ihor-sviziev!
@param
is not declared for all parameters of a function
Description
This is a follow-up on magento/magento2#33595 and symfony/symfony#42281.
Magento using laminas/laminas-code as a dependency. It is used especially for retrieving argument types during running the
php bin/magento setup:di:compile
command.The root cause analyses showed that inside the module
symfony/console
was removed the optional@param
that declared as argument types. The hotfix was the following - declare all params.My PR changes behavior from checking only by position to two steps when NOT all arguments have their own argument type defined:
* @param string
) - use return type from it* @param string $myParam
) - use return type from it@param
tags from the phpdoc block and try to find the corresponding variable name. If found - user return type from it