File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -350,9 +350,6 @@ services:
350350 tags :
351351 - phpstan.parser.richParserNodeVisitor
352352
353- -
354- class : PHPStan\Node\Printer\ExprPrinter
355-
356353 -
357354 class : PHPStan\Node\Printer\Printer
358355 autowired :
@@ -403,12 +400,6 @@ services:
403400 -
404401 class : PHPStan\PhpDocParser\Printer\Printer
405402
406- -
407- class : PHPStan\PhpDoc\PhpDocInheritanceResolver
408-
409- -
410- class : PHPStan\PhpDoc\PhpDocNodeResolver
411-
412403 -
413404 class : PHPStan\PhpDoc\PhpDocStringResolver
414405
Original file line number Diff line number Diff line change 33namespace PHPStan \Node \Printer ;
44
55use PhpParser \Node \Expr ;
6+ use PHPStan \DependencyInjection \AutowiredService ;
67
78/**
89 * @api
910 */
11+ #[AutowiredService]
1012final class ExprPrinter
1113{
1214
Original file line number Diff line number Diff line change 33namespace PHPStan \PhpDoc ;
44
55use PHPStan \BetterReflection \Reflection \Adapter \ReflectionParameter ;
6+ use PHPStan \DependencyInjection \AutowiredService ;
67use PHPStan \Reflection \ClassReflection ;
78use PHPStan \Type \FileTypeMapper ;
89use function array_map ;
910use function strtolower ;
1011
12+ #[AutowiredService]
1113final class PhpDocInheritanceResolver
1214{
1315
Original file line number Diff line number Diff line change 33namespace PHPStan \PhpDoc ;
44
55use PHPStan \Analyser \NameScope ;
6+ use PHPStan \DependencyInjection \AutowiredService ;
67use PHPStan \PhpDoc \Tag \AssertTag ;
78use PHPStan \PhpDoc \Tag \AssertTagParameter ;
89use PHPStan \PhpDoc \Tag \DeprecatedTag ;
4950use function str_starts_with ;
5051use function substr ;
5152
53+ #[AutowiredService]
5254final class PhpDocNodeResolver
5355{
5456
You can’t perform that action at this time.
0 commit comments