function SymfonyStyle::writeBuffer
2 calls to SymfonyStyle::writeBuffer()
- SymfonyStyle::write in vendor/
symfony/ console/ Style/ SymfonyStyle.php - Writes a message to the output.
- SymfonyStyle::writeln in vendor/
symfony/ console/ Style/ SymfonyStyle.php - Writes a message to the output and adds a newline at the end.
File
-
vendor/
symfony/ console/ Style/ SymfonyStyle.php, line 394
Class
- SymfonyStyle
- Output decorator helpers for the Symfony Style Guide.
Namespace
Symfony\Component\Console\StyleCode
private function writeBuffer(string $message, bool $newLine, int $type) : void {
// We need to know if the last chars are PHP_EOL
$this->bufferedOutput
->write($message, $newLine, $type);
}