Skip to content

Commit

Permalink
Add support of Symfony Console 5.
Browse files Browse the repository at this point in the history
  • Loading branch information
ptondereau committed Dec 18, 2019
1 parent 75c99be commit cf4ac53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
"ext-phar": "*",
"nikic/php-parser": "^4.3",
"ocramius/package-versions": "^1.4.2",
"symfony/console": "^4.4.0",
"symfony/console": "^4.4 || ^5.0",
"webmozart/glob": "^4.1"
},
"require-dev": {
"ext-zend-opcache": "*",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^0.11.19",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.4.3"
},
"config": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public function enterNode(Node $node)
$this->recordFunctionDefinition($node);
$this->recordConstDefinition($node);
$this->recordDefinedConstDefinition($node);

return $node;
}

private function recordClassDefinition(Node $node)
Expand Down

0 comments on commit cf4ac53

Please sign in to comment.