/var/www/vhosts/ihelp.ro/_OLD/vendor/symfony/console/Output
NameSizeModeActions
BufferedOutput.php8520644editdlrm
ConsoleOutput.php43210644editdlrm
ConsoleOutputInterface.php8000644editdlrm
ConsoleSectionOutput.php41640644editdlrm
NullOutput.php23110644editdlrm
Output.php44280644editdlrm
OutputInterface.php32280644editdlrm
StreamOutput.php35390644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/symfony/console/Output/BufferedOutput.php (852B)
* * 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(string $message, bool $newline) { $this->buffer .= $message; if ($newline) { $this->buffer .= PHP_EOL; } } }