Exemple #1
0
 /**
  * Constructor.
  *
  * @param int                           $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
  * @param bool|null                     $decorated Whether to decorate messages (null for auto-guessing)
  * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)
  *
  * @api
  */
 public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)
 {
     $outputStream = $this->hasStdoutSupport() ? 'php://stdout' : 'php://output';
     $errorStream = $this->hasStderrSupport() ? 'php://stderr' : 'php://output';
     parent::__construct(fopen($outputStream, 'w'), $verbosity, $decorated, $formatter);
     $this->stderr = new StreamOutput(fopen($errorStream, 'w'), $verbosity, $decorated, $this->getFormatter());
 }
Exemple #2
0
 /**
  * Constructor.
  *
  * @param mixed                         $stream    A stream resource
  * @param int                           $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
  * @param bool|null                     $decorated Whether to decorate messages (null for auto-guessing)
  * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)
  *
  * @throws \InvalidArgumentException When first argument is not a real stream
  *
  * @api
  */
 public function __construct($stream, $verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)
 {
     parent::__construct($stream, $verbosity, $decorated, $formatter);
     $formatter = $this->getFormatter();
     $formatter->setStyle('cmd', new OutputFormatterStyle('black', null, array('bold')));
     $formatter->setStyle('warning', new OutputFormatterStyle('black', 'yellow'));
     $formatter->setStyle('step', new OutputFormatterStyle('green', 'black'));
 }
 /**
  * Constructor.
  *
  * @param integer         $verbosity The verbosity level (self::VERBOSITY_QUIET, self::VERBOSITY_NORMAL,
  *                                   self::VERBOSITY_VERBOSE)
  * @param Boolean         $decorated Whether to decorate messages or not (null for auto-guessing)
  * @param OutputFormatter $formatter Output formatter instance
  *
  * @api
  */
 public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)
 {
     $outputStream = 'php://stdout';
     if (!$this->hasStdoutSupport()) {
         $outputStream = 'php://output';
     }
     parent::__construct(fopen($outputStream, 'w'), $verbosity, $decorated, $formatter);
 }
Exemple #4
0
 /**
  * Constructor.
  *
  * @param int $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
  * @param bool|null $decorated Whether to decorate messages (null for auto-guessing)
  * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)
  */
 public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)
 {
     parent::__construct($this->openOutputStream(), $verbosity, $decorated, $formatter);
     $actualDecorated = $this->isDecorated();
     $this->stderr = new StreamOutput($this->openErrorStream(), $verbosity, $decorated, $this->getFormatter());
     if (null === $decorated) {
         $this->setDecorated($actualDecorated && $this->stderr->isDecorated());
     }
 }
 /**
  * Constructor.
  *
  * @param int                           $verbosity The verbosity level (one of the VERBOSITY constants in OutputInterface)
  * @param bool|null                     $decorated Whether to decorate messages (null for auto-guessing)
  * @param OutputFormatterInterface|null $formatter Output formatter instance (null to use default OutputFormatter)
  *
  * @api
  */
 public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)
 {
     parent::__construct($this->openOutputStream(), $verbosity, $decorated, $formatter);
     $this->stderr = new StreamOutput($this->openErrorStream(), $verbosity, $decorated, $this->getFormatter());
 }
 /**
  * Constructor.
  *
  * @param StreamOutput $output
  */
 public function __construct(StreamOutput $output)
 {
     parent::__construct($output->getStream());
 }
Exemple #7
0
 /**
  * Constructor.
  *
  * @param integer         $verbosity The verbosity level (self::VERBOSITY_QUIET, self::VERBOSITY_NORMAL,
  *                                   self::VERBOSITY_VERBOSE)
  * @param Boolean         $decorated Whether to decorate messages or not (null for auto-guessing)
  * @param OutputFormatter $formatter Output formatter instance
  *
  * @api
  */
 public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null, OutputFormatterInterface $formatter = null)
 {
     parent::__construct(fopen('php://stdout', 'w'), $verbosity, $decorated, $formatter);
 }