class OutputStyle implements OutputInterface, StyleInterface
Decorates output to add console style guide helpers.
Methods
__construct(OutputInterface $output) | ||
newLine(int $count = 1) Add newline(s). | ||
ProgressBar | createProgressBar(int $max) | |
write(string|array $messages, bool $newline = false, $type = self::OUTPUT_NORMAL) Writes a message to the output. | ||
writeln(string|array $messages, $type = self::OUTPUT_NORMAL) Writes a message to the output and adds a newline at the end. | ||
setVerbosity(int $level) Sets the verbosity of the output. | ||
int | getVerbosity() Gets the current verbosity of the output. | |
setDecorated(bool $decorated) Sets the decorated flag. | ||
bool | isDecorated() Gets the decorated flag. | |
setFormatter(OutputFormatterInterface $formatter) Sets output formatter. | ||
OutputFormatterInterface | getFormatter() Returns current output formatter instance. | |
bool | isQuiet() Returns whether verbosity is quiet (-q). | |
bool | isVerbose() Returns whether verbosity is verbose (-v). | |
bool | isVeryVerbose() Returns whether verbosity is very verbose (-vv). | |
bool | isDebug() Returns whether verbosity is debug (-vvv). |
Details
__construct(OutputInterface $output)
newLine(int $count = 1)
Add newline(s).
ProgressBar createProgressBar(int $max)
write(string|array $messages, bool $newline = false, $type = self::OUTPUT_NORMAL)
Writes a message to the output.
writeln(string|array $messages, $type = self::OUTPUT_NORMAL)
Writes a message to the output and adds a newline at the end.
setVerbosity(int $level)
Sets the verbosity of the output.
int getVerbosity()
Gets the current verbosity of the output.
setDecorated(bool $decorated)
Sets the decorated flag.
bool isDecorated()
Gets the decorated flag.
setFormatter(OutputFormatterInterface $formatter)
Sets output formatter.
OutputFormatterInterface getFormatter()
Returns current output formatter instance.
bool isQuiet()
Returns whether verbosity is quiet (-q).
bool isVerbose()
Returns whether verbosity is verbose (-v).
bool isVeryVerbose()
Returns whether verbosity is very verbose (-vv).
bool isDebug()
Returns whether verbosity is debug (-vvv).
Please login to continue.