public function ProcessBuilder::__construct

File

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

Class

ProcessBuilder
Process builder.

Namespace

Symfony\Component\Process

Code

public function __construct(array $arguments = array()) {
  $this->arguments = $arguments;
  $this->timeout = 60;
  $this->options = array();
  $this->env = array();
  $this->inheritEnv = true;
}