@@ -43,9 +43,9 @@ discard block |
||
| 43 | 43 | use Rector\TypeDeclaration\Rector\StmtsAwareInterface\DeclareStrictTypesRector; |
| 44 | 44 | |
| 45 | 45 | return RectorConfig::configure() |
| 46 | - ->withPhpSets(php81: true) |
|
| 47 | - ->withPreparedSets(deadCode: true) |
|
| 48 | - ->withParallel(120, 8, 10) |
|
| 46 | + ->withPhpSets(php81: true) |
|
| 47 | + ->withPreparedSets(deadCode: true) |
|
| 48 | + ->withParallel(120, 8, 10) |
|
| 49 | 49 | ->withCache( |
| 50 | 50 | // Github action cache or local |
| 51 | 51 | is_dir('/tmp') ? '/tmp/rector' : null, |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | ->withPHPStanConfigs([ |
| 64 | 64 | // __DIR__ . '/phpstan.neon.dist', |
| 65 | 65 | ]) |
| 66 | - // is there a file you need to skip? |
|
| 66 | + // is there a file you need to skip? |
|
| 67 | 67 | ->withSkip([ |
| 68 | 68 | __DIR__ . '/src/Debug/Toolbar/Views/toolbar.tpl.php', |
| 69 | 69 | __DIR__ . '/spec/support/application/app/Views', |
@@ -115,12 +115,12 @@ discard block |
||
| 115 | 115 | ExplicitBoolCompareRector::class, |
| 116 | 116 | AddClosureVoidReturnTypeWhereNoReturnRector::class, |
| 117 | 117 | AddFunctionVoidReturnTypeWhereNoReturnRector::class, |
| 118 | - TypedPropertyFromAssignsRector::class, |
|
| 118 | + TypedPropertyFromAssignsRector::class, |
|
| 119 | 119 | ]) |
| 120 | 120 | ->withConfiguredRule(StringClassNameToClassConstantRector::class, [ |
| 121 | 121 | // keep '\\' prefix string on string '\Foo\Bar' |
| 122 | 122 | StringClassNameToClassConstantRector::SHOULD_KEEP_PRE_SLASH => true, |
| 123 | 123 | ]) |
| 124 | 124 | |
| 125 | - ; |
|
| 125 | + ; |
|
| 126 | 126 | |