Passed
Push — master ( 9b6c63...c5ec64 )
by Ole
05:50
created
Routing/LegacyRouteLoader.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         $this->initFinder();
51 51
 
52 52
         $defaults = array(
53
-          '_controller' => 'basster_legacy_bridge.legacy_controller:runLegacyScript',
53
+            '_controller' => 'basster_legacy_bridge.legacy_controller:runLegacyScript',
54 54
         );
55 55
 
56 56
         /** @var SplFileInfo $file */
@@ -80,9 +80,9 @@  discard block
 block discarded – undo
80 80
     private function initFinder()
81 81
     {
82 82
         $this->finder->ignoreDotFiles(true)
83
-                     ->files()
84
-                     ->name('*.php')
85
-                     ->in($this->legacyPath);
83
+                        ->files()
84
+                        ->name('*.php')
85
+                        ->in($this->legacyPath);
86 86
     }
87 87
     /**
88 88
      * @param SplFileInfo $file
@@ -92,10 +92,10 @@  discard block
 block discarded – undo
92 92
     private function createLegacyRouteName(SplFileInfo $file)
93 93
     {
94 94
         return 'basster.legacy.'.
95
-          str_replace(
95
+            str_replace(
96 96
             '/',
97 97
             '__',
98 98
             substr($file->getRelativePathname(), 0, -4)
99
-          );
99
+            );
100 100
     }
101 101
 }
Please login to merge, or discard this patch.