Passed
Push — main ( d71b68...a743f7 )
by Dimitri
08:12 queued 04:09
created
rector.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 use Rector\TypeDeclaration\Rector\StmtsAwareInterface\DeclareStrictTypesRector;
43 43
 
44 44
 return RectorConfig::configure()
45
-	->withPhpSets(php81: true)
46
-	->withPreparedSets(deadCode: true)
47
-	->withParallel(120, 8, 10)
45
+    ->withPhpSets(php81: true)
46
+    ->withPreparedSets(deadCode: true)
47
+    ->withParallel(120, 8, 10)
48 48
     ->withCache(
49 49
         // Github action cache or local
50 50
         is_dir('/tmp') ? '/tmp/rector' : null,
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     ->withPHPStanConfigs([
63 63
         // __DIR__ . '/phpstan.neon.dist',
64 64
     ])
65
-	// is there a file you need to skip?
65
+    // is there a file you need to skip?
66 66
     ->withSkip([
67 67
         __DIR__ . '/src/Debug/Toolbar/Views/toolbar.tpl.php',
68 68
         __DIR__ . '/spec/support/application/app/Views',
@@ -120,5 +120,5 @@  discard block
 block discarded – undo
120 120
         StringClassNameToClassConstantRector::SHOULD_KEEP_PRE_SLASH => true,
121 121
     ])
122 122
 
123
-	;
123
+    ;
124 124
 
Please login to merge, or discard this patch.