Skip to content
Snippets Groups Projects

Bug de génération du cache en mode 'prod'

Merged Thierry Perpère requested to merge thierry.perpere/OSE:bug-cache-prod into master
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -135,8 +135,8 @@ class AppConfig
'./vendor',
],
'cache_dir' => 'cache/',
'config_cache_enabled' => ('prod' == $env),
'module_map_cache_enabled' => ('prod' == $env),
'config_cache_enabled' => ('prod' == $env && !self::inConsole()),
'module_map_cache_enabled' => ('prod' == $env && !self::inConsole()),
],
];
}
@@ -166,4 +166,4 @@ class AppConfig
AppConfig::init();
return AppConfig::getGlobal();
\ No newline at end of file
return AppConfig::getGlobal();
Loading