class OutputFormatter implements OutputFormatterInterface
Formatter class for console output.
Methods
static string | escape(string $text) Escapes "<" special char in given text. | |
__construct(bool $decorated = false, array $styles = array()) Initializes console output formatter. | ||
setDecorated(bool $decorated) Sets the decorated flag. | ||
bool | isDecorated() Gets the decorated flag. | |
setStyle(string $name, OutputFormatterStyleInterface $style) Sets a new style. | ||
bool | hasStyle(string $name) Checks if output formatter has style with specified name. | |
OutputFormatterStyleInterface | getStyle(string $name) Gets style options from style with specified name. | |
string | format(string $message) Formats a message according to the given styles. | |
OutputFormatterStyleStack | getStyleStack() |
Details
static string escape(string $text)
Escapes "<" special char in given text.
__construct(bool $decorated = false, array $styles = array())
Initializes console output formatter.
setDecorated(bool $decorated)
Sets the decorated flag.
bool isDecorated()
Gets the decorated flag.
setStyle(string $name, OutputFormatterStyleInterface $style)
Sets a new style.
bool hasStyle(string $name)
Checks if output formatter has style with specified name.
OutputFormatterStyleInterface getStyle(string $name)
Gets style options from style with specified name.
string format(string $message)
Formats a message according to the given styles.
Please login to continue.