Command: Function getMainConfig should not deliver module config
Co-Authored-By: mxhash <mxhash@users.noreply.github.com>
This commit is contained in:
parent
ae469311be
commit
498f37d4ff
|
@ -95,7 +95,7 @@ abstract class Command
|
||||||
return $this->config;
|
return $this->config;
|
||||||
} else {
|
} else {
|
||||||
if (! array_key_exists($file, $this->configs)) {
|
if (! array_key_exists($file, $this->configs)) {
|
||||||
$this->configs[$file] = Config::module($this->moduleName, $file);
|
$this->configs[$file] = Config::app($file);
|
||||||
}
|
}
|
||||||
return $this->configs[$file];
|
return $this->configs[$file];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue