Completed
Push — swp-2216 ( c6e9b4 )
by
unknown
36s
created
src/Kernel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,11 +41,11 @@
 block discarded – undo
41 41
 
42 42
     protected function configureRoutes(RoutingConfigurator $routes): void
43 43
     {
44
-        $confDir = $this->getProjectDir() . '/config';
44
+        $confDir = $this->getProjectDir().'/config';
45 45
 
46 46
 
47
-        $routes->import($confDir . '/{routes}/' . $this->environment . '/**/*' . self::CONFIG_EXTS, 'glob');
48
-        $routes->import($confDir . '/{routes}/*' . self::CONFIG_EXTS, 'glob');
49
-        $routes->import($confDir . '/{routes}' . self::CONFIG_EXTS, 'glob');
47
+        $routes->import($confDir.'/{routes}/'.$this->environment.'/**/*'.self::CONFIG_EXTS, 'glob');
48
+        $routes->import($confDir.'/{routes}/*'.self::CONFIG_EXTS, 'glob');
49
+        $routes->import($confDir.'/{routes}'.self::CONFIG_EXTS, 'glob');
50 50
     }
51 51
 }
Please login to merge, or discard this patch.