OutputStyle
abstract class OutputStyle implements OutputInterface, StyleInterface
Decorates output to add console style guide helpers.
Methods
newLine(int $count = 1)
Add newline(s).
createProgressBar(int $max = 0)
No description
write(string|iterable $messages, bool $newline = false, $type = self::OUTPUT_NORMAL)
Writes a message to the output.
writeln(string|iterable $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.
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).
getErrorOutput()
No description