public function ProcessBuilder::enableOutput in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/process/ProcessBuilder.php \Symfony\Component\Process\ProcessBuilder::enableOutput()
Enables fetching output and error output from the underlying process.
Return value
File
- vendor/
symfony/ process/ ProcessBuilder.php, line 247
Class
- ProcessBuilder
- Process builder.
Namespace
Symfony\Component\ProcessCode
public function enableOutput() {
$this->outputDisabled = false;
return $this;
}