public function Process::addOutput

Adds a line to the STDOUT stream.

Parameters

string $line The line to append:

1 call to Process::addOutput()
Process::updateOutput in drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php
Updates the current output of the process (STDOUT).

File

drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php, line 798

Class

Process
Process is a thin wrapper around proc_* functions to ease start independent PHP processes.

Namespace

Symfony\Component\Process

Code

public function addOutput($line) {
  $this->stdout .= $line;
}