/opt/cpanel/ea-wappspector/vendor/symfony/console/Output
NameSizeModeActions
BufferedOutput.php8530644editdlrm
ConsoleOutput.php49200644editdlrm
ConsoleOutputInterface.php8000644editdlrm
ConsoleSectionOutput.php41840644editdlrm
NullOutput.php23110644editdlrm
Output.php44140644editdlrm
OutputInterface.php29080644editdlrm
StreamOutput.php40510644editdlrm
TrimmedBufferOutput.php15960644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/symfony/console/Output/BufferedOutput.php (853B)
* * 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; } } }