ArgvInput.php
2 years ago
ArrayInput.php
2 years ago
Input.php
2 years ago
InputArgument.php
2 years ago
InputAwareInterface.php
2 years ago
InputDefinition.php
2 years ago
InputInterface.php
2 years ago
InputOption.php
2 years ago
StreamableInputInterface.php
2 years ago
StringInput.php
2 years ago
InputAwareInterface.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | namespace IAWP_SCOPED\Symfony\Component\Console\Input; |
| 12 | |
| 13 | /** |
| 14 | * InputAwareInterface should be implemented by classes that depends on the |
| 15 | * Console Input. |
| 16 | * |
| 17 | * @author Wouter J <waldio.webdesign@gmail.com> |
| 18 | * @internal |
| 19 | */ |
| 20 | interface InputAwareInterface |
| 21 | { |
| 22 | /** |
| 23 | * Sets the Console Input. |
| 24 | */ |
| 25 | public function setInput(InputInterface $input); |
| 26 | } |
| 27 |