function Process::isStarted
Checks if the process has been started with no regard to the current state.
2 calls to Process::isStarted()
- Process::getStartTime in vendor/
symfony/ process/ Process.php - Process::requireProcessIsStarted in vendor/
symfony/ process/ Process.php - Ensures the process is running or terminated, throws a LogicException if the process has a not started.
File
-
vendor/
symfony/ process/ Process.php, line 874
Class
- Process
- Process is a thin wrapper around proc_* functions to easily start independent PHP processes.
Namespace
Symfony\Component\ProcessCode
public function isStarted() : bool {
return self::STATUS_READY != $this->status;
}