function Process::isTerminated
Checks if the process is terminated.
1 call to Process::isTerminated()
- Process::requireProcessIsTerminated in vendor/
symfony/ process/ Process.php - Ensures the process is terminated, throws a LogicException if the process has a status different than "terminated".
File
-
vendor/
symfony/ process/ Process.php, line 882
Class
- Process
- Process is a thin wrapper around proc_* functions to easily start independent PHP processes.
Namespace
Symfony\Component\ProcessCode
public function isTerminated() : bool {
$this->updateStatus(false);
return self::STATUS_TERMINATED == $this->status;
}