Commit 5ac3fbf 1 parent a8daccc commit 5ac3fbf Copy full SHA for 5ac3fbf
File tree 2 files changed +2
-14
lines changed
2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change 30
30
"phpstan/phpstan" : " ^1.9.0" ,
31
31
"pluswerk/grumphp-bom-task" : " ^8.0.0" ,
32
32
"pluswerk/grumphp-xliff-task" : " ^6.0.0" ,
33
- "rector/rector" : " ^1.0.4 " ,
33
+ "rector/rector" : " ^1.2.2 " ,
34
34
"squizlabs/php_codesniffer" : " ^3.7.1" ,
35
35
"symfony/yaml" : " ^5.4.0 || ^6.0 || ^7.0"
36
36
},
37
37
"require-dev" : {
38
- "composer/composer" : " ^2.6.6 " ,
38
+ "composer/composer" : " ^2.7.7 " ,
39
39
"pluswerk/grumphp-bom-task" : " dev-main as 8.99.99" ,
40
40
"pluswerk/grumphp-xliff-task" : " dev-main as 6.99.99" ,
41
41
"roave/security-advisories" : " dev-latest"
Original file line number Diff line number Diff line change 11
11
use Rector \CodeQuality \Rector \Isset_ \IssetOnPropertyObjectToPropertyExistsRector ;
12
12
use Rector \CodingStyle \Rector \FuncCall \CountArrayToEmptyArrayComparisonRector ;
13
13
use Rector \CodingStyle \Rector \If_ \NullableCompareToNullRector ;
14
- use Rector \CodingStyle \Rector \PostInc \PostIncDecToPreIncDecRector ;
15
14
use Rector \Php70 \Rector \Assign \ListSwapArrayOrderRector ;
16
- use Rector \Php74 \Rector \LNumber \AddLiteralSeparatorToNumberRector ;
17
15
use Rector \Privatization \Rector \Property \PrivatizeFinalClassPropertyRector ;
18
16
use Rector \Set \ValueObject \LevelSetList ;
19
17
use Rector \Set \ValueObject \SetList ;
@@ -132,11 +130,6 @@ public static function skip(): array
132
130
* TO: if ($someClass instanceof SomeClass && $someClass->someMethod()) {
133
131
*/
134
132
BinaryOpNullableToInstanceofRector::class,
135
- /**
136
- * FROM: $i++
137
- * TO: ++$i
138
- */
139
- PostIncDecToPreIncDecRector::class,
140
133
/**
141
134
* FROM: if(count($array)) {
142
135
* TO: if($array !== []) {
@@ -156,11 +149,6 @@ public static function skip(): array
156
149
* => we don't do it once!
157
150
*/
158
151
ListSwapArrayOrderRector::class,
159
- /**
160
- * FROM: 1305630314
161
- * TO: 1_305_630_314
162
- */
163
- AddLiteralSeparatorToNumberRector::class,
164
152
/**
165
153
* Maybe to a later date?
166
154
*
You can’t perform that action at this time.
0 commit comments