File tree 3 files changed +2
-5
lines changed
src/PhpDocParser/PhpParser
3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 8
8
],
9
9
"require" : {
10
10
"php" : " ^7.4|^8.0" ,
11
- "phpstan/phpstan" : " ^2.1.0 "
11
+ "phpstan/phpstan" : " ^2.1.1 "
12
12
},
13
13
"autoload" : {
14
14
"files" : [
Original file line number Diff line number Diff line change 24
24
"ocramius/package-versions" : " ^2.9" ,
25
25
"ondram/ci-detector" : " ^4.2" ,
26
26
"phpstan/phpdoc-parser" : " ^2.0" ,
27
- "phpstan/phpstan" : " ^2.1.0 " ,
27
+ "phpstan/phpstan" : " ^2.1.1 " ,
28
28
"react/event-loop" : " ^1.5" ,
29
29
"react/promise" : " ^3.2" ,
30
30
"react/socket" : " ^1.15" ,
Original file line number Diff line number Diff line change 8
8
use PhpParser \Parser ;
9
9
use PhpParser \ParserFactory ;
10
10
use PHPStan \Parser \CachedParser ;
11
- use PHPStan \Parser \PropertyHookNameVisitor ;
12
11
use PHPStan \Parser \SimpleParser ;
13
12
use PHPStan \Parser \VariadicFunctionsVisitor ;
14
13
use PHPStan \Parser \VariadicMethodsVisitor ;
@@ -43,14 +42,12 @@ private function createPHPStanParser(Parser $parser): CachedParser
43
42
$ nameResolver = new NameResolver ();
44
43
$ variadicMethodsVisitor = new VariadicMethodsVisitor ();
45
44
$ variadicFunctionsVisitor = new VariadicFunctionsVisitor ();
46
- $ propertyHookNameVisitor = new PropertyHookNameVisitor ();
47
45
48
46
$ simpleParser = new SimpleParser (
49
47
$ parser ,
50
48
$ nameResolver ,
51
49
$ variadicMethodsVisitor ,
52
50
$ variadicFunctionsVisitor ,
53
- $ propertyHookNameVisitor
54
51
);
55
52
56
53
return new CachedParser ($ simpleParser , 1024 );
You can’t perform that action at this time.
0 commit comments