Browse Source

[Nostromo] Make sure app is a MageApplication

pull/1/head
Andrés Montañez 8 years ago
parent
commit
c98af5dc73
  1. 6
      src/Command/AbstractCommand.php

6
src/Command/AbstractCommand.php

@ -10,6 +10,7 @@
namespace Mage\Command;
use Mage\MageApplication;
use Mage\Utils;
use Mage\Runtime\Runtime;
use Psr\Log\LogLevel;
@ -72,6 +73,9 @@ abstract class AbstractCommand extends Command
*/
protected function requireConfig()
{
$this->getApplication()->configure();
$app = $this->getApplication();
if ($app instanceof MageApplication) {
$app->configure();
}
}
}

Loading…
Cancel
Save