We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad4330b commit 5962442Copy full SHA for 5962442
1 file changed
library/config/io/reader/PhpFileReader.php
@@ -103,9 +103,10 @@ function (&$v) {
103
$this->mergeConfig($config, $localSource);
104
} elseif (!$masterConfigExists) {
105
throw new RuntimeException($this->translate(
106
- 'Master configuration file "{file}" not found.',
+ 'Master configuration file "{master}" or local configuration file "{local}" is not found.',
107
[
108
- 'file' => $masterFilename
+ 'master' => $masterFilename,
109
+ 'local' => $localFilename
110
]
111
));
112
}
0 commit comments