PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wiloke-listing-tools
/
vendor
/
symfony
/
console
/
Input
<?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 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(InputInterface $input); }
[+]
..
[-] InputOption.php
[edit]
[-] .Input.php
[edit]
[-] StringInput.php
[edit]
[-] InputInterface.php
[edit]
[-] InputDefinition.php
[edit]
[-] ArgvInput.php
[edit]
[-] StreamableInputInterface.php
[edit]
[-] ArrayInput.php
[edit]
[-] InputAwareInterface.php
[edit]
[-] Input.php
[edit]
[-] InputArgument.php
[edit]