Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\Console\Input; Chris@0: Chris@0: /** Chris@0: * InputAwareInterface should be implemented by classes that depends on the Chris@0: * Console Input. Chris@0: * Chris@0: * @author Wouter J Chris@0: */ Chris@0: interface InputAwareInterface Chris@0: { Chris@0: /** Chris@0: * Sets the Console Input. Chris@0: */ Chris@0: public function setInput(InputInterface $input); Chris@0: }