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\ConsoleCode
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;
}