public function OutputStyle::setDecorated in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Style/OutputStyle.php \Symfony\Component\Console\Style\OutputStyle::setDecorated()
Sets the decorated flag.
Parameters
bool $decorated Whether to decorate the messages:
Overrides OutputInterface::setDecorated
File
- vendor/
symfony/ console/ Style/ OutputStyle.php, line 88
Class
- OutputStyle
- Decorates output to add console style guide helpers.
Namespace
Symfony\Component\Console\StyleCode
public function setDecorated($decorated) {
$this->output
->setDecorated($decorated);
}