public function OutputFormatter::setDecorated in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Formatter/OutputFormatter.php \Symfony\Component\Console\Formatter\OutputFormatter::setDecorated()
Sets the decorated flag.
Parameters
bool $decorated Whether to decorate the messages or not:
Overrides OutputFormatterInterface::setDecorated
File
- vendor/
symfony/ console/ Formatter/ OutputFormatter.php, line 64
Class
- OutputFormatter
- Formatter class for console output.
Namespace
Symfony\Component\Console\FormatterCode
public function setDecorated($decorated) {
$this->decorated = (bool) $decorated;
}