Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
php /
Symfony /
Component /
Console /
Output /
Delete
Unzip
Name
Size
Permission
Date
Action
BufferedOutput.php
872
B
-rw-r--r--
2016-06-06 18:05
ConsoleOutput.php
3.91
KB
-rw-r--r--
2016-06-06 18:05
ConsoleOutputInterface.php
843
B
-rw-r--r--
2016-06-06 18:05
NullOutput.php
1.96
KB
-rw-r--r--
2016-06-06 18:05
Output.php
4.25
KB
-rw-r--r--
2016-06-06 18:05
OutputInterface.php
2.61
KB
-rw-r--r--
2016-06-06 18:05
StreamOutput.php
3.29
KB
-rw-r--r--
2016-06-06 18:05
Save
Rename
<?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\Output; /** * ConsoleOutputInterface is the interface implemented by ConsoleOutput class. * This adds information about stderr output stream. * * @author Dariusz Górecki <darek.krk@gmail.com> */ interface ConsoleOutputInterface extends OutputInterface { /** * Gets the OutputInterface for errors. * * @return OutputInterface */ public function getErrorOutput(); /** * Sets the OutputInterface used for errors. * * @param OutputInterface $error */ public function setErrorOutput(OutputInterface $error); }