rector/vendor/symfony/console/Input/InputAwareInterface.php
Tomas Votruba 89eee6ea29 Updated Rector to commit 5b74ac7ae62b7fc1a7c094eb052b5f3a822f9852
5b74ac7ae6 [PhpDocInfoPrinter] fix running tests on windows (#98)
2021-05-24 16:18:32 +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 RectorPrefix20210524\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(\RectorPrefix20210524\Symfony\Component\Console\Input\InputInterface $input);
}