public function Process::addOutput

1 call to Process::addOutput()
Process::updateOutput in drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php

File

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

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;
}