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 incorrect argument type when @param is not declared for all parameters of a function #95

Merged
merged 3 commits into from
Sep 21, 2021
Merged

Fix incorrect argument type when @param is not declared for all parameters of a function #95

merged 3 commits into from
Sep 21, 2021

Conversation

ihor-sviziev
Copy link
Contributor

@ihor-sviziev ihor-sviziev commented Jul 29, 2021

Q A
Documentation no
Bugfix yes
BC Break no
New Feature no
RFC no
QA no

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:

  1. Check property by position (the fastest solution)
    • if the variable name is empty (e.g.* @param string) - use return type from it
    • if the variable name is equal to what was requested (e.g.* @param string $myParam) - use return type from it
  2. Iterate all @param tags from the phpdoc block and try to find the corresponding variable name. If found - user return type from it

@ihor-sviziev
Copy link
Contributor Author

ihor-sviziev commented Jul 29, 2021

@Ocramius I just pushed the changes.
I'm first time contributing to laminas, so not sure if I did everything correctly.
Note: For Magento 2 we need to have 3.5.x release. Should I create a separate PR for that? Or you will port it?

@IbrahimS2
Copy link

@ihor-sviziev The datatype should be checked first and if not declared then and only then PHPDocs can be checked.

@ihor-sviziev
Copy link
Contributor Author

ihor-sviziev commented Jul 29, 2021

@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.
I update the PR description, in order to make it more clear

@ihor-sviziev
Copy link
Contributor Author

@Ocramius, could you please review this pull request?

Copy link
Member

@Ocramius Ocramius left a 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

@Ocramius Ocramius changed the base branch from 4.5.x to 4.4.x September 21, 2021 12:41
@Ocramius Ocramius added the Bug Something isn't working label Sep 21, 2021
@Ocramius Ocramius added this to the 4.4.3 milestone Sep 21, 2021
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>
Copy link
Member

@Ocramius Ocramius left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚢 thanks @ihor-sviziev!

@Ocramius Ocramius changed the title Fix incorrect argument type Fix incorrect argument type when @param is not declared for all parameters of a function Sep 21, 2021
@Ocramius Ocramius merged commit bb32485 into laminas:4.4.x Sep 21, 2021
@ihor-sviziev ihor-sviziev deleted the incorrect-argument-type branch September 21, 2021 13:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants