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.41
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; /** * @author Jean-François Simon <contact@jfsimon.fr> */ class BufferedOutput extends Output { /** * @var string */ private $buffer = ''; /** * Empties buffer and returns its content. * * @return string */ public function fetch() { $content = $this->buffer; $this->buffer = ''; return $content; } /** * {@inheritdoc} */ protected function doWrite($message, $newline) { $this->buffer .= $message; if ($newline) { $this->buffer .= "\n"; } } }