@@ -14,7 +14,7 @@ |
||
| 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 | }); |
@@ -23,7 +23,7 @@ |
||
| 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 | } |