function Application::scheduleAlarm
2 calls to Application::scheduleAlarm()
- Application::doRunCommand in vendor/
symfony/ console/ Application.php - Runs the current command.
- Application::setAlarmInterval in vendor/
symfony/ console/ Application.php - Sets the interval to schedule a SIGALRM signal in seconds.
File
-
vendor/
symfony/ console/ Application.php, line 150
Class
- Application
- An Application is the container for a collection of commands.
Namespace
Symfony\Component\ConsoleCode
private function scheduleAlarm() : void {
if (null !== $this->alarmInterval) {
$this->getSignalRegistry()
->scheduleAlarm($this->alarmInterval);
}
}