File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ declare (strict_types=1 );
4
+
3
5
use Rector \CodeQuality \Rector \BooleanAnd \SimplifyEmptyArrayCheckRector ;
4
6
use Rector \CodeQuality \Rector \Class_ \CompleteDynamicPropertiesRector ;
5
7
use Rector \CodeQuality \Rector \Expression \InlineIfToExplicitIfRector ;
26
28
use Rector \Php55 \Rector \String_ \StringClassNameToClassConstantRector ;
27
29
use Rector \Php73 \Rector \FuncCall \JsonThrowOnErrorRector ;
28
30
use Rector \Php73 \Rector \FuncCall \StringifyStrNeedlesRector ;
31
+ use Rector \PHPUnit \AnnotationsToAttributes \Rector \Class_ \AnnotationWithValueToAttributeRector ;
32
+ use Rector \PHPUnit \CodeQuality \Rector \Class_ \YieldDataProviderRector ;
29
33
use Rector \PHPUnit \Set \PHPUnitSetList ;
30
34
use Rector \Privatization \Rector \Property \PrivatizeFinalClassPropertyRector ;
31
35
use Rector \Set \ValueObject \LevelSetList ;
73
77
74
78
JsonThrowOnErrorRector::class,
75
79
StringifyStrNeedlesRector::class,
80
+ YieldDataProviderRector::class,
76
81
77
82
// Note: requires php 8
78
83
RemoveUnusedPromotedPropertyRector::class,
84
+ AnnotationWithValueToAttributeRector::class,
79
85
80
86
// May load view files directly when detecting classes
81
87
StringClassNameToClassConstantRector::class,
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ declare (strict_types=1 );
4
+
3
5
use Rector \CodeQuality \Rector \BooleanAnd \SimplifyEmptyArrayCheckRector ;
4
6
use Rector \CodeQuality \Rector \Class_ \CompleteDynamicPropertiesRector ;
5
7
use Rector \CodeQuality \Rector \Expression \InlineIfToExplicitIfRector ;
26
28
use Rector \Php55 \Rector \String_ \StringClassNameToClassConstantRector ;
27
29
use Rector \Php73 \Rector \FuncCall \JsonThrowOnErrorRector ;
28
30
use Rector \Php73 \Rector \FuncCall \StringifyStrNeedlesRector ;
31
+ use Rector \PHPUnit \AnnotationsToAttributes \Rector \Class_ \AnnotationWithValueToAttributeRector ;
32
+ use Rector \PHPUnit \CodeQuality \Rector \Class_ \YieldDataProviderRector ;
29
33
use Rector \PHPUnit \Set \PHPUnitSetList ;
30
34
use Rector \Privatization \Rector \Property \PrivatizeFinalClassPropertyRector ;
31
35
use Rector \Set \ValueObject \LevelSetList ;
74
78
75
79
JsonThrowOnErrorRector::class,
76
80
StringifyStrNeedlesRector::class,
81
+ YieldDataProviderRector::class,
77
82
78
83
// Note: requires php 8
79
84
RemoveUnusedPromotedPropertyRector::class,
85
+ AnnotationWithValueToAttributeRector::class,
80
86
81
87
// May load view files directly when detecting classes
82
88
StringClassNameToClassConstantRector::class,
You can’t perform that action at this time.
0 commit comments