Completed
Pull Request — master (#1426)
by
unknown
05:31
created
src/Laravel/moduleConfigMerge.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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, []),
Please login to merge, or discard this patch.