You are here

private function Process::resetProcessData in Zircon Profile 8.0

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

Resets data related to the latest run of the process.

2 calls to Process::resetProcessData()
Process::start in vendor/symfony/process/Process.php
Starts the process and returns after writing the input to STDIN.
Process::__clone in vendor/symfony/process/Process.php

File

vendor/symfony/process/Process.php, line 1418

Class

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

Namespace

Symfony\Component\Process

Code

private function resetProcessData() {
  $this->starttime = null;
  $this->callback = null;
  $this->exitcode = null;
  $this->fallbackExitcode = null;
  $this->processInformation = null;
  $this->stdout = null;
  $this->stderr = null;
  $this->process = null;
  $this->latestSignal = null;
  $this->status = self::STATUS_READY;
  $this->incrementalOutputOffset = 0;
  $this->incrementalErrorOutputOffset = 0;
}