public function Process::addErrorOutput

Adds a line to the STDERR stream.

Parameters

string $line The line to append:

1 call to Process::addErrorOutput()
Process::updateErrorOutput in drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php
Updates the current error output of the process (STDERR).

File

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

Class

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

Namespace

Symfony\Component\Process

Code

public function addErrorOutput($line) {
  $this->stderr .= $line;
}