rector/vendor/symfony/console/Input/InputAwareInterface.php
Tomas Votruba ebc0abcc08 Updated Rector to commit e0b4e852a64ee87adf72f3308ec51e9672b71bbc
e0b4e852a6 [Php80] Annotation attribute should keep order original annotation comment (#104)
2021-05-28 12:08:33 +00:00

26 lines
644 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 RectorPrefix20210528\Symfony\Component\Console\Input;
/**
* InputAwareInterface should be implemented by classes that depends on the
* Console Input.
*
* @author Wouter J <waldio.webdesign@gmail.com>
*/
interface InputAwareInterface
{
/**
* Sets the Console Input.
*/
public function setInput(\RectorPrefix20210528\Symfony\Component\Console\Input\InputInterface $input);
}