function OutputStyle::newLine
Overrides StyleInterface::newLine
2 calls to OutputStyle::newLine()
- SymfonyStyle::newLine in vendor/
symfony/ console/ Style/ SymfonyStyle.php - Add newline(s).
- SymfonyStyle::newLine in vendor/
symfony/ console/ Style/ SymfonyStyle.php - Add newline(s).
1 method overrides OutputStyle::newLine()
- SymfonyStyle::newLine in vendor/
symfony/ console/ Style/ SymfonyStyle.php - Add newline(s).
File
-
vendor/
symfony/ console/ Style/ OutputStyle.php, line 31
Class
- OutputStyle
- Decorates output to add console style guide helpers.
Namespace
Symfony\Component\Console\StyleCode
public function newLine(int $count = 1) : void {
$this->output
->write(str_repeat(\PHP_EOL, $count));
}