OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
php
/
Symfony
/
Component
/
Console
/
Input
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/20/2024 06:32:21 AM
rwxr-xr-x
📄
ArgvInput.php
10.71 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
ArrayInput.php
5.45 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
Input.php
4.88 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
InputArgument.php
3.25 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
InputAwareInterface.php
606 bytes
03/05/2018 08:02:01 PM
rw-r--r--
📄
InputDefinition.php
11 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
InputInterface.php
4.8 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
InputOption.php
5.78 KB
03/05/2018 08:02:01 PM
rw-r--r--
📄
StreamableInputInterface.php
873 bytes
03/05/2018 08:02:01 PM
rw-r--r--
📄
StringInput.php
2.33 KB
03/05/2018 08:02:01 PM
rw-r--r--
Editing: InputAwareInterface.php
Close
<?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. * * @param InputInterface */ public function setInput(InputInterface $input); }