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

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

If your command relies on functionality which is triggered through the Bootstrap shutdown (such as the persistence framework), you must use quit() instead of exit().
protected quit ( integer $exitCode ) : void
$exitCode integer Exit code to return on exit (see http://www.php.net/exit)
Результат void
    protected function quit($exitCode = 0)
    {
        $this->response->setExitCode($exitCode);
        throw new StopActionException();
    }