diff --git a/config/config.php b/config/config.php index f09bb9f6..03b949a9 100644 --- a/config/config.php +++ b/config/config.php @@ -22,10 +22,9 @@ return (new ConfigAggregator\ConfigAggregator([ Rest\ConfigProvider::class, EventDispatcher\ConfigProvider::class, new ConfigAggregator\PhpFileProvider('config/autoload/{{,*.}global,{,*.}local}.php'), - new ConfigAggregator\ZendConfigProvider('config/params/{generated_config.php,*.config.{php,json}}'), env('APP_ENV') === 'test' ? new ConfigAggregator\PhpFileProvider('config/test/*.global.php') - : new ConfigAggregator\ArrayProvider([]), + : new ConfigAggregator\ZendConfigProvider('config/params/{generated_config.php,*.config.{php,json}}'), ], 'data/cache/app_config.php', [ Core\ConfigPostProcessor::class, ]))->getMergedConfig();