public function NullOutput::isDecorated in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/console/Output/NullOutput.php \Symfony\Component\Console\Output\NullOutput::isDecorated()
Gets the decorated flag.
Return value
bool true if the output will decorate messages, false otherwise
Overrides OutputInterface::isDecorated
File
- vendor/
symfony/ console/ Output/ NullOutput.php, line 55
Class
- NullOutput
- NullOutput suppresses all output.
Namespace
Symfony\Component\Console\OutputCode
public function isDecorated() {
return false;
}