@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | */ |
43 | 43 | protected function mergeModuleConfig(string $file, string $key): void |
44 | 44 | { |
45 | - $mod_config = module_path($this->moduleName, 'Config/' . $file); |
|
45 | + $mod_config = module_path($this->moduleName, 'Config/'.$file); |
|
46 | 46 | if (!file_exists($mod_config)) { |
47 | 47 | return; |
48 | 48 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | */ |
55 | 55 | |
56 | 56 | // Following code based on Illuminate\Support\ServiceProvider::mergeConfigFrom() |
57 | - if (! ($this->app instanceof CachesConfiguration && $this->app->configurationIsCached())) { |
|
57 | + if (!($this->app instanceof CachesConfiguration && $this->app->configurationIsCached())) { |
|
58 | 58 | $config = $this->app->make('config'); |
59 | 59 | $values = array_merge( |
60 | 60 | $config->get($key, []), |