You are here

public function Process::hasBeenStopped in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/process/Process.php \Symfony\Component\Process\Process::hasBeenStopped()

Returns true if the child process has been stopped by a signal.

It always returns false on Windows.

Return value

bool

Throws

LogicException In case the process is not terminated

File

vendor/symfony/process/Process.php, line 683

Class

Process
Process is a thin wrapper around proc_* functions to easily start independent PHP processes.

Namespace

Symfony\Component\Process

Code

public function hasBeenStopped() {
  $this
    ->requireProcessIsTerminated(__FUNCTION__);
  $this
    ->updateStatus(false);
  return $this->processInformation['stopped'];
}