You are here

public function OutputFormatter::isDecorated in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Formatter/OutputFormatter.php \Symfony\Component\Console\Formatter\OutputFormatter::isDecorated()

Gets the decorated flag.

Return value

bool true if the output will decorate messages, false otherwise

Overrides OutputFormatterInterface::isDecorated

1 call to OutputFormatter::isDecorated()
OutputFormatter::applyCurrentStyle in vendor/symfony/console/Formatter/OutputFormatter.php
Applies current style from stack to text, if must be applied.

File

vendor/symfony/console/Formatter/OutputFormatter.php, line 74

Class

OutputFormatter
Formatter class for console output.

Namespace

Symfony\Component\Console\Formatter

Code

public function isDecorated() {
  return $this->decorated;
}