/home/techb158/exp.abdallabala.com/vendor/symfony/console/Output
NameSizeModeActions
BufferedOutput.php8410644editdlrm
ConsoleOutput.php40070644editdlrm
ConsoleOutputInterface.php7340644editdlrm
NullOutput.php21580644editdlrm
Output.php44750644editdlrm
OutputInterface.php33430644editdlrm
StreamOutput.php36950644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/symfony/console/Output/BufferedOutput.php (841B)
* * 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 */ class BufferedOutput extends Output { 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 .= \PHP_EOL; } } }