Neos\Flow\Cli\CommandRequestHandler::shutdown PHP Метод

shutdown() защищенный Метод

Starts the shutdown sequence
protected shutdown ( string $runlevel ) : void
$runlevel string one of the Bootstrap::RUNLEVEL_* constants
Результат void
    protected function shutdown($runlevel)
    {
        $this->bootstrap->shutdown($runlevel);
        if ($runlevel === Bootstrap::RUNLEVEL_COMPILETIME) {
            $this->objectManager->get(LockManager::class)->unlockSite();
        }
        exit($this->response->getExitCode());
    }