public function Process::isStarted in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/process/Process.php \Symfony\Component\Process\Process::isStarted()
Checks if the process has been started with no regard to the current state.
Return value
bool true if status is ready, false otherwise
1 call to Process::isStarted()
- 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 731
Class
- Process
- Process is a thin wrapper around proc_* functions to easily start independent PHP processes.
Namespace
Symfony\Component\ProcessCode
public function isStarted() {
return $this->status != self::STATUS_READY;
}