rector/vendor/symfony/console/Helper/InputAwareHelper.php
Tomas Votruba a130d42a04 Updated Rector to commit 9dea8d8cd82bb640ccad2d583487d1afdd69428d
9dea8d8cd8 [DeadCode][CodeQuality] Handle use RemoveDeadInstanceOfRector + SwitchNegatedTernaryRector with if instanceof check (#201)
2021-06-11 09:40:47 +00:00

31 lines
970 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RectorPrefix20210611\Symfony\Component\Console\Helper;
use RectorPrefix20210611\Symfony\Component\Console\Input\InputAwareInterface;
use RectorPrefix20210611\Symfony\Component\Console\Input\InputInterface;
/**
* An implementation of InputAwareInterface for Helpers.
*
* @author Wouter J <waldio.webdesign@gmail.com>
*/
abstract class InputAwareHelper extends \RectorPrefix20210611\Symfony\Component\Console\Helper\Helper implements \RectorPrefix20210611\Symfony\Component\Console\Input\InputAwareInterface
{
protected $input;
/**
* {@inheritdoc}
*/
public function setInput(\RectorPrefix20210611\Symfony\Component\Console\Input\InputInterface $input)
{
$this->input = $input;
}
}