public function Output::setDecorated in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Output/Output.php \Symfony\Component\Console\Output\Output::setDecorated()
Sets the decorated flag.
Parameters
bool $decorated Whether to decorate the messages:
Overrides OutputInterface::setDecorated
1 call to Output::setDecorated()
- ConsoleOutput::setDecorated in vendor/
symfony/ console/ Output/ ConsoleOutput.php - Sets the decorated flag.
1 method overrides Output::setDecorated()
- ConsoleOutput::setDecorated in vendor/
symfony/ console/ Output/ ConsoleOutput.php - Sets the decorated flag.
File
- vendor/
symfony/ console/ Output/ Output.php, line 68
Class
- Output
- Base class for output classes.
Namespace
Symfony\Component\Console\OutputCode
public function setDecorated($decorated) {
$this->formatter
->setDecorated($decorated);
}