Home
last modified time | relevance | path

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

/template/strap/vendor/symfony/process/Pipes/
H A DAbstractPipes.php28 private $lastError; variable in Symfony\\Component\\Process\\Pipes\\AbstractPipes
62 $lastError = $this->lastError;
63 $this->lastError = null;
66 return null !== $lastError && false !== stripos($lastError, 'interrupted system call');
178 $this->lastError = $msg;
H A DWindowsPipes.php52 $lastError = 'unknown reason';
53 set_error_handler(function ($type, $msg) use (&$lastError) { $lastError = $msg; });
63 … RuntimeException('A temporary file could not be opened to write the process output: '.$lastError);