Commit be175d80 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Correction du test pour l'activation ou non des modules ZendDeveloperTools et...

Correction du test pour l'activation ou non des modules ZendDeveloperTools et UnicaenCode qui était erroné.
parent 06e650a4
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -31,7 +31,8 @@ $modules = [
    'Demo',
];

if ( 'development' == getenv('APPLICATION_ENV') ?: 'production' ) {
$applicationEnv = getenv('APPLICATION_ENV') ?: 'production';
if ('development' === $applicationEnv) {
    $modules[] = 'ZendDeveloperTools';
//    $modules[] = 'UnicaenCode';
}