| Current Path : /var/www/clients/client3/web2/web/generated/code/Composer/Command/RequireCommand/ |
| Current File : /var/www/clients/client3/web2/web/generated/code/Composer/Command/RequireCommand/Interceptor.php |
<?php
namespace Composer\Command\RequireCommand;
/**
* Interceptor class for @see \Composer\Command\RequireCommand
*/
class Interceptor extends \Composer\Command\RequireCommand implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(?string $name = null)
{
$this->___init();
parent::__construct($name);
}
/**
* {@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);
}
}