class ConsoleOutput extends StreamOutput implements ConsoleOutputInterface
ConsoleOutput is the default class for all CLI output. It uses STDOUT and STDERR. This class is a convenient wrapper around StreamOutput for both STDOUT and STDERR. $output = new ConsoleOutput();
This is equivalent to: $output = new StreamOutput(fopen('php://stdout', 'w'));
$stdErr = new StreamOutput(fopen('php://stderr', 'w'));
Methods
__construct(int $verbosity = self::VERBOSITY_NORMAL, bool $decorated = null,