Neos\Flow\Cli\CommandController::sendAndExit PHP Метод

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

Sends the response and exits the CLI without any further code execution Should be used for commands that flush code caches.
protected sendAndExit ( integer $exitCode ) : void
$exitCode integer Exit code to return on exit
Результат void
    protected function sendAndExit($exitCode = 0)
    {
        $this->response->send();
        exit($exitCode);
    }