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: StreamableInputInterface.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; /** * StreamableInputInterface is the interface implemented by all input classes * that have an input stream. * * @author Robin Chalas <robin.chalas@gmail.com> */ interface StreamableInputInterface extends InputInterface { /** * Sets the input stream to read from when interacting with the user. * * This is mainly useful for testing purpose. * * @param resource $stream The input stream */ public function setStream($stream); /** * Returns the input stream. * * @return resource|null */ public function getStream(); }