| Current Path : /var/www/html/generated/code/Magento/Store/Console/Command/StoreListCommand/ |
| Current File : /var/www/html/generated/code/Magento/Store/Console/Command/StoreListCommand/Interceptor.php |
<?php
namespace Magento\Store\Console\Command\StoreListCommand;
/**
* Interceptor class for @see \Magento\Store\Console\Command\StoreListCommand
*/
class Interceptor extends \Magento\Store\Console\Command\StoreListCommand implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Store\Model\StoreManagerInterface $storeManager)
{
$this->___init();
parent::__construct($storeManager);
}
/**
* {@inheritdoc}
*/
public function run(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'run');
return $pluginInfo ? $this->___callPlugins('run', func_get_args(), $pluginInfo) : parent::run($input, $output);
}
}