Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Process.php

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\Process

Code

public function isStarted() : bool {
    return self::STATUS_READY != $this->status;
}
RSS feed
Powered by Drupal