interface OutputFormatterInterface
Formatter interface for console output.
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. |
Sets the decorated flag.
bool | $decorated | Whether to decorate the messages or not |
Gets the decorated flag.
bool | true if the output will decorate messages, false otherwise |
Sets a new style.
string | $name | The style name |
OutputFormatterStyleInterface | $style | The style instance |
Checks if output formatter has style with specified name.
string | $name |
bool |
Gets style options from style with specified name.
string | $name |
OutputFormatterStyleInterface |
InvalidArgumentException | When style isn't defined |
Formats a message according to the given styles.
string | $message | The message to style |
string | The styled message |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Console/Formatter/OutputFormatterInterface.html