File tree 4 files changed +6
-9
lines changed
4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -350,9 +350,6 @@ services:
350
350
tags :
351
351
- phpstan.parser.richParserNodeVisitor
352
352
353
- -
354
- class : PHPStan\Node\Printer\ExprPrinter
355
-
356
353
-
357
354
class : PHPStan\Node\Printer\Printer
358
355
autowired :
@@ -403,12 +400,6 @@ services:
403
400
-
404
401
class : PHPStan\PhpDocParser\Printer\Printer
405
402
406
- -
407
- class : PHPStan\PhpDoc\PhpDocInheritanceResolver
408
-
409
- -
410
- class : PHPStan\PhpDoc\PhpDocNodeResolver
411
-
412
403
-
413
404
class : PHPStan\PhpDoc\PhpDocStringResolver
414
405
Original file line number Diff line number Diff line change 3
3
namespace PHPStan \Node \Printer ;
4
4
5
5
use PhpParser \Node \Expr ;
6
+ use PHPStan \DependencyInjection \AutowiredService ;
6
7
7
8
/**
8
9
* @api
9
10
*/
11
+ #[AutowiredService]
10
12
final class ExprPrinter
11
13
{
12
14
Original file line number Diff line number Diff line change 3
3
namespace PHPStan \PhpDoc ;
4
4
5
5
use PHPStan \BetterReflection \Reflection \Adapter \ReflectionParameter ;
6
+ use PHPStan \DependencyInjection \AutowiredService ;
6
7
use PHPStan \Reflection \ClassReflection ;
7
8
use PHPStan \Type \FileTypeMapper ;
8
9
use function array_map ;
9
10
use function strtolower ;
10
11
12
+ #[AutowiredService]
11
13
final class PhpDocInheritanceResolver
12
14
{
13
15
Original file line number Diff line number Diff line change 3
3
namespace PHPStan \PhpDoc ;
4
4
5
5
use PHPStan \Analyser \NameScope ;
6
+ use PHPStan \DependencyInjection \AutowiredService ;
6
7
use PHPStan \PhpDoc \Tag \AssertTag ;
7
8
use PHPStan \PhpDoc \Tag \AssertTagParameter ;
8
9
use PHPStan \PhpDoc \Tag \DeprecatedTag ;
49
50
use function str_starts_with ;
50
51
use function substr ;
51
52
53
+ #[AutowiredService]
52
54
final class PhpDocNodeResolver
53
55
{
54
56
You can’t perform that action at this time.
0 commit comments