magento2-docker/generated/code/Magento/SampleData/Console/Command/SampleDataRemoveCommand/Interceptor.php

26 lines
1.1 KiB
PHP
Executable File

<?php
namespace Magento\SampleData\Console\Command\SampleDataRemoveCommand;
/**
* Interceptor class for @see \Magento\SampleData\Console\Command\SampleDataRemoveCommand
*/
class Interceptor extends \Magento\SampleData\Console\Command\SampleDataRemoveCommand implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Framework\Filesystem $filesystem, \Magento\SampleData\Model\Dependency $sampleDataDependency, \Symfony\Component\Console\Input\ArrayInputFactory $arrayInputFactory, \Composer\Console\ApplicationFactory $applicationFactory)
{
$this->___init();
parent::__construct($filesystem, $sampleDataDependency, $arrayInputFactory, $applicationFactory);
}
/**
* {@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);
}
}