N98\Magento\Command\Developer\Theme\InfoCommand::execute PHP Method

execute() protected method

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : integer | void
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
return integer | void
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $this->detectMagento($output);
        if (!$this->initMagento()) {
            return;
        }
        foreach (\Mage::app()->getWebsites() as $website) {
            /* @var $website \Mage_Core_Model_Website */
            foreach ($website->getStores() as $store) {
                /* @var $store \Mage_Core_Model_Store */
                $this->_displayTable($output, $store);
            }
        }
    }