We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66a1d21 commit fdd1c83Copy full SHA for fdd1c83
src/Chamilo/CoreBundle/Composer/ScriptHandler.php
@@ -270,6 +270,13 @@ public static function updateCss()
270
*/
271
public static function generateDoctrineProxies()
272
{
273
+ $configurationFile = __DIR__.'/../../../../app/config/configuration.php';
274
+
275
+ if (!is_file($configurationFile)) {
276
+ echo 'app/config/configuration.php file does not exits.'.PHP_EOL;
277
+ return;
278
+ }
279
280
$helperSet = require __DIR__.'/../../../../cli-config.php';
281
282
$application = ConsoleRunner::createApplication(
0 commit comments