2021-05-10 00:23:30 +00:00
|
|
|
<?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.
|
|
|
|
*/
|
2021-09-05 00:27:40 +00:00
|
|
|
namespace RectorPrefix20210905\Symfony\Component\Console\Input;
|
2021-05-10 00:23:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
2021-08-23 00:20:32 +00:00
|
|
|
* @param \Symfony\Component\Console\Input\InputInterface $input
|
2021-05-10 00:23:30 +00:00
|
|
|
*/
|
2021-07-05 22:50:18 +00:00
|
|
|
public function setInput($input);
|
2021-05-10 00:23:30 +00:00
|
|
|
}
|