[Nostromo] Make sure app is a MageApplication

This commit is contained in:
Andrés Montañez 2017-01-29 19:41:02 -03:00
parent 8a417d7246
commit c98af5dc73

View file

@ -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();
}
}
}