-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add support of Symfony Console 5. #174
Add support of Symfony Console 5. #174
Conversation
@@ -45,6 +45,8 @@ public function enterNode(Node $node) | |||
$this->recordFunctionDefinition($node); | |||
$this->recordConstDefinition($node); | |||
$this->recordDefinedConstDefinition($node); | |||
|
|||
return $node; |
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.
PHPStan was complaining about no return because of method's signature in PhpParser lib. I don't know if I should return null
or a Node
Thanks! |
@Ocramius @ptondereau Why dropping support for symfony 4 when you added the support for symfony 5 ? You could have both. This is a breaking change, tagged as a minor update. |
Heya, Dependency upgrades are not BC breaks, as they move the dependency, not the API of the package. You can keep using the previous version, or install the tool standalone. |
I've just added support of symfony's console 5