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

Breadcrumb

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

function Application::getSignalRegistry

1 call to Application::getSignalRegistry()
Application::doRunCommand in vendor/symfony/console/Application.php
Runs the current command.

File

vendor/symfony/console/Application.php, line 119

Class

Application
An Application is the container for a collection of commands.

Namespace

Symfony\Component\Console

Code

public function getSignalRegistry() : SignalRegistry {
    if (!$this->signalRegistry) {
        throw new RuntimeException('Signals are not supported. Make sure that the "pcntl" extension is installed and that "pcntl_*" functions are not disabled by your php.ini\'s "disable_functions" directive.');
    }
    return $this->signalRegistry;
}

API Navigation

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