public function Process::__clone

File

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

Class

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

Namespace

Symfony\Component\Process

Code

public function __clone() {
  $this->exitcode = null;
  $this->fallbackExitcode = null;
  $this->processInformation = null;
  $this->stdout = null;
  $this->stderr = null;
  $this->pipes = null;
  $this->process = null;
  $this->status = self::STATUS_READY;
  $this->fileHandles = null;
  $this->readBytes = null;
}