Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/console/Output/ConsoleOutput.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
27 * | 27 * |
28 * @author Fabien Potencier <fabien@symfony.com> | 28 * @author Fabien Potencier <fabien@symfony.com> |
29 */ | 29 */ |
30 class ConsoleOutput extends StreamOutput implements ConsoleOutputInterface | 30 class ConsoleOutput extends StreamOutput implements ConsoleOutputInterface |
31 { | 31 { |
32 /** | |
33 * @var StreamOutput | |
34 */ | |
35 private $stderr; | 32 private $stderr; |
36 | 33 |
37 /** | 34 /** |
38 * Constructor. | |
39 * | |
40 * @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface) | 35 * @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface) |
41 * @param bool|null $decorated Whether to decorate messages (null for auto-guessing) | 36 * @param bool|null $decorated Whether to decorate messages (null for auto-guessing) |
42 * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter) | 37 * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter) |
43 */ | 38 */ |
44 public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null) | 39 public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null) |