File tree Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -833,16 +833,6 @@ services:
833
833
tags :
834
834
- phpstan.broker.dynamicFunctionReturnTypeExtension
835
835
836
- -
837
- class : PHPStan\Type\Php\LtrimFunctionReturnTypeExtension
838
- tags :
839
- - phpstan.broker.dynamicFunctionReturnTypeExtension
840
-
841
- -
842
- class : PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension
843
- tags :
844
- - phpstan.broker.dynamicFunctionReturnTypeExtension
845
-
846
836
-
847
837
class : PHPStan\Type\ClosureTypeFactory
848
838
arguments :
Original file line number Diff line number Diff line change 4
4
5
5
use PhpParser \Node \Expr \FuncCall ;
6
6
use PHPStan \Analyser \Scope ;
7
+ use PHPStan \DependencyInjection \AutowiredService ;
7
8
use PHPStan \Reflection \FunctionReflection ;
8
9
use PHPStan \Type \ClassStringType ;
9
10
use PHPStan \Type \Constant \ConstantStringType ;
12
13
use function count ;
13
14
use function ltrim ;
14
15
16
+ #[AutowiredService]
15
17
final class LtrimFunctionReturnTypeExtension implements DynamicFunctionReturnTypeExtension
16
18
{
17
19
Original file line number Diff line number Diff line change 4
4
5
5
use PhpParser \Node \Expr \FuncCall ;
6
6
use PHPStan \Analyser \Scope ;
7
+ use PHPStan \DependencyInjection \AutowiredService ;
7
8
use PHPStan \Reflection \FunctionReflection ;
8
9
use PHPStan \Type \Accessory \AccessoryLowercaseStringType ;
9
10
use PHPStan \Type \Accessory \AccessoryUppercaseStringType ;
14
15
use function count ;
15
16
use function in_array ;
16
17
18
+ #[AutowiredService]
17
19
final class TrimFunctionDynamicReturnTypeExtension implements DynamicFunctionReturnTypeExtension
18
20
{
19
21
You can’t perform that action at this time.
0 commit comments