You are here

public function ProcessBuilder::disableOutput in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/process/ProcessBuilder.php \Symfony\Component\Process\ProcessBuilder::disableOutput()

Disables fetching output and error output from the underlying process.

Return value

ProcessBuilder

File

vendor/symfony/process/ProcessBuilder.php, line 235

Class

ProcessBuilder
Process builder.

Namespace

Symfony\Component\Process

Code

public function disableOutput() {
  $this->outputDisabled = true;
  return $this;
}