Moved config post-processors to their own sub-namespace

This commit is contained in:
Alejandro Celaya
2023-01-07 13:04:46 +01:00
parent 390bc59d99
commit a06957e9fa
6 changed files with 13 additions and 8 deletions

View File

@@ -48,6 +48,6 @@ return (new ConfigAggregator\ConfigAggregator([
// Routes have to be loaded last
new ConfigAggregator\PhpFileProvider('config/autoload/routes.config.php'),
], 'data/cache/app_config.php', [
Core\Config\BasePathPrefixer::class,
Core\Config\MultiSegmentSlugProcessor::class,
Core\Config\PostProcessor\BasePathPrefixer::class,
Core\Config\PostProcessor\MultiSegmentSlugProcessor::class,
]))->getMergedConfig();