Pagekit\Kernel\ExceptionHandler::sendPhpResponse PHP 메소드

sendPhpResponse() 공개 메소드

public sendPhpResponse ( $exception )
    public function sendPhpResponse($exception)
    {
        if ($exception instanceof HttpException) {
            $exception = FlattenException::create($exception, $exception->getCode());
        }
        parent::sendPhpResponse($exception);
    }