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

Breadcrumb

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

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

Code

public function isTerminated() : bool {
    $this->updateStatus(false);
    return self::STATUS_TERMINATED == $this->status;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal