public function OutputStyle::isDecorated in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Style/OutputStyle.php \Symfony\Component\Console\Style\OutputStyle::isDecorated()
Gets the decorated flag.
Return value
bool true if the output will decorate messages, false otherwise
Overrides OutputInterface::isDecorated
1 call to OutputStyle::isDecorated()
- SymfonyStyle::block in vendor/
symfony/ console/ Style/ SymfonyStyle.php - Formats a message as a block of text.
File
- vendor/
symfony/ console/ Style/ OutputStyle.php, line 96
Class
- OutputStyle
- Decorates output to add console style guide helpers.
Namespace
Symfony\Component\Console\StyleCode
public function isDecorated() {
return $this->output
->isDecorated();
}