Your IP : 216.73.216.220


Current Path : /var/www/www.indacotrentino.com/www/generated/code/Magento/Framework/App/Cron/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/generated/code/Magento/Framework/App/Cron/Interceptor.php

<?php
namespace Magento\Framework\App\Cron;

/**
 * Interceptor class for @see \Magento\Framework\App\Cron
 */
class Interceptor extends \Magento\Framework\App\Cron implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\App\State $state, \Magento\Framework\App\Console\Request $request, \Magento\Framework\App\Console\Response $response, \Magento\Framework\ObjectManagerInterface $objectManager, array $parameters = [], ?\Magento\Framework\App\AreaList $areaList = null)
    {
        $this->___init();
        parent::__construct($state, $request, $response, $objectManager, $parameters, $areaList);
    }

    /**
     * {@inheritdoc}
     */
    public function launch()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'launch');
        return $pluginInfo ? $this->___callPlugins('launch', func_get_args(), $pluginInfo) : parent::launch();
    }

    /**
     * {@inheritdoc}
     */
    public function catchException(\Magento\Framework\App\Bootstrap $bootstrap, \Exception $exception)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'catchException');
        return $pluginInfo ? $this->___callPlugins('catchException', func_get_args(), $pluginInfo) : parent::catchException($bootstrap, $exception);
    }
}