Skip to content

Commit 92b4999

Browse files
authored
Bump to PHPStan ^2.1.1 and remove usage of PropertyHookNameVisitor on SimpleParser (rectorphp#6649)
1 parent 1d078fa commit 92b4999

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

build/target-repository/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"require": {
1010
"php": "^7.4|^8.0",
11-
"phpstan/phpstan": "^2.1.0"
11+
"phpstan/phpstan": "^2.1.1"
1212
},
1313
"autoload": {
1414
"files": [

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"ocramius/package-versions": "^2.9",
2525
"ondram/ci-detector": "^4.2",
2626
"phpstan/phpdoc-parser": "^2.0",
27-
"phpstan/phpstan": "^2.1.0",
27+
"phpstan/phpstan": "^2.1.1",
2828
"react/event-loop": "^1.5",
2929
"react/promise": "^3.2",
3030
"react/socket": "^1.15",

src/PhpDocParser/PhpParser/SmartPhpParserFactory.php

-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use PhpParser\Parser;
99
use PhpParser\ParserFactory;
1010
use PHPStan\Parser\CachedParser;
11-
use PHPStan\Parser\PropertyHookNameVisitor;
1211
use PHPStan\Parser\SimpleParser;
1312
use PHPStan\Parser\VariadicFunctionsVisitor;
1413
use PHPStan\Parser\VariadicMethodsVisitor;
@@ -43,14 +42,12 @@ private function createPHPStanParser(Parser $parser): CachedParser
4342
$nameResolver = new NameResolver();
4443
$variadicMethodsVisitor = new VariadicMethodsVisitor();
4544
$variadicFunctionsVisitor = new VariadicFunctionsVisitor();
46-
$propertyHookNameVisitor = new PropertyHookNameVisitor();
4745

4846
$simpleParser = new SimpleParser(
4947
$parser,
5048
$nameResolver,
5149
$variadicMethodsVisitor,
5250
$variadicFunctionsVisitor,
53-
$propertyHookNameVisitor
5451
);
5552

5653
return new CachedParser($simpleParser, 1024);

0 commit comments

Comments
 (0)