public function Output::isDecorated in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Output/Output.php \Symfony\Component\Console\Output\Output::isDecorated()
Gets the decorated flag.
Return value
bool true if the output will decorate messages, false otherwise
Overrides OutputInterface::isDecorated
1 call to Output::isDecorated()
- ConsoleOutput::__construct in vendor/
symfony/ console/ Output/ ConsoleOutput.php - Constructor.
File
- vendor/
symfony/ console/ Output/ Output.php, line 76
Class
- Output
- Base class for output classes.
Namespace
Symfony\Component\Console\OutputCode
public function isDecorated() {
return $this->formatter
->isDecorated();
}