Home
last modified time | relevance | path

Searched refs:cachedExitCode (Results 1 – 1 of 1) sorted by relevance

/plugin/combo/vendor/symfony/process/
H A DProcess.php83 private $cachedExitCode; variable in Symfony\\Component\\Process\\Process
1353 … if (!isset($this->cachedExitCode) && !$running && -1 !== $this->processInformation['exitcode']) {
1354 $this->cachedExitCode = $this->processInformation['exitcode'];
1357 … if (isset($this->cachedExitCode) && !$running && -1 === $this->processInformation['exitcode']) {
1358 $this->processInformation['exitcode'] = $this->cachedExitCode;