Explorar el Código

Console application has to exit with exitCode

fixes #562
CeBe hace 12 años
padre
commit
47d58dbd96
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      yii

+ 2 - 1
yii

@@ -19,4 +19,5 @@ require(__DIR__ . '/vendor/autoload.php');
 $config = require(__DIR__ . '/config/console.php');
 
 $application = new yii\console\Application($config);
-return $application->run();
+$exitCode = $application->run();
+exit($exitCode);