Passed
Push — master ( dcf026...963312 )
by Caen
03:39 queued 14s
created
packages/framework/src/Foundation/Internal/LoadConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     /** Get all the configuration files for the application. */
15 15
     protected function getConfigurationFiles(Application $app): array
16 16
     {
17
-        return tap(parent::getConfigurationFiles($app), function (array &$files) use ($app): void {
17
+        return tap(parent::getConfigurationFiles($app), function(array &$files) use ($app): void {
18 18
             // Inject our custom config file which is stored in `app/config.php`.
19 19
             $files['app'] = $app->basePath().DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'config.php';
20 20
         });
Please login to merge, or discard this patch.
packages/framework/src/Foundation/ConsoleKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         // the default LoadConfiguration bootstrapper class with our implementation.
24 24
         // We do this by swapping out the LoadConfiguration class with our own.
25 25
 
26
-        return array_values(tap(array_combine($bootstrappers, $bootstrappers), function (array &$array): void {
26
+        return array_values(tap(array_combine($bootstrappers, $bootstrappers), function(array &$array): void {
27 27
             $array[\LaravelZero\Framework\Bootstrap\LoadConfiguration::class] = \Hyde\Foundation\Internal\LoadConfiguration::class;
28 28
         }));
29 29
     }
Please login to merge, or discard this patch.