|
14 | 14 | use Rector\Php84\Rector\Param\ExplicitNullableParamTypeRector; |
15 | 15 |
|
16 | 16 | return static function (RectorConfig $rectorConfig): void { |
17 | | - $rectorConfig->rules( |
18 | | - [ |
19 | | - ExplicitNullableParamTypeRector::class, |
20 | | - RoundingModeEnumRector::class, |
21 | | - AddEscapeArgumentRector::class, |
22 | | - NewMethodCallWithoutParenthesesRector::class, |
23 | | - DeprecatedAnnotationToDeprecatedAttributeRector::class, |
24 | | - ForeachToArrayFindRector::class, |
25 | | - ForeachToArrayFindKeyRector::class, |
26 | | - ForeachToArrayAllRector::class, |
27 | | - ForeachToArrayAnyRector::class, |
28 | | - ] |
29 | | - ); |
| 17 | + $rectorConfig->rules([ |
| 18 | + ExplicitNullableParamTypeRector::class, |
| 19 | + RoundingModeEnumRector::class, |
| 20 | + AddEscapeArgumentRector::class, |
| 21 | + NewMethodCallWithoutParenthesesRector::class, |
| 22 | + DeprecatedAnnotationToDeprecatedAttributeRector::class, |
| 23 | + ForeachToArrayFindRector::class, |
| 24 | + ForeachToArrayFindKeyRector::class, |
| 25 | + ForeachToArrayAllRector::class, |
| 26 | + ForeachToArrayAnyRector::class, |
| 27 | + ]); |
30 | 28 | }; |
0 commit comments