Command: Function getMainConfig should not deliver module config

Co-Authored-By: mxhash <mxhash@users.noreply.github.com>
This commit is contained in:
Johannes Meyer 2019-04-26 14:37:06 +02:00 committed by GitHub
parent ae469311be
commit 498f37d4ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ abstract class Command
return $this->config;
} else {
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];
}