PHP 클래스 Laravel\Lumen\Exceptions\Handler

상속: implements Illuminate\Contracts\Debug\ExceptionHandler
파일 보기 프로젝트 열기: laravel/lumen-framework 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$dontReport array A list of the exception types that should not be reported.

공개 메소드들

메소드 설명
render ( Illuminate\Http\Request $request, Exception $e ) : Illuminate\Http\Response Render an exception into an HTTP response.
renderForConsole ( Symfony\Component\Console\Output\OutputInterface $output, Exception $e ) : void Render an exception to the console.
report ( Exception $e ) : void Report or log an exception.
shouldReport ( Exception $e ) : boolean Determine if the exception should be reported.

보호된 메소드들

메소드 설명
decorate ( string $content, string $css ) : string Get the html response content.
shouldntReport ( Exception $e ) : boolean Determine if the exception is in the "do not report" list.

메소드 상세

decorate() 보호된 메소드

Get the html response content.
protected decorate ( string $content, string $css ) : string
$content string
$css string
리턴 string

render() 공개 메소드

Render an exception into an HTTP response.
public render ( Illuminate\Http\Request $request, Exception $e ) : Illuminate\Http\Response
$request Illuminate\Http\Request
$e Exception
리턴 Illuminate\Http\Response

renderForConsole() 공개 메소드

Render an exception to the console.
public renderForConsole ( Symfony\Component\Console\Output\OutputInterface $output, Exception $e ) : void
$output Symfony\Component\Console\Output\OutputInterface
$e Exception
리턴 void

report() 공개 메소드

Report or log an exception.
public report ( Exception $e ) : void
$e Exception
리턴 void

shouldReport() 공개 메소드

Determine if the exception should be reported.
public shouldReport ( Exception $e ) : boolean
$e Exception
리턴 boolean

shouldntReport() 보호된 메소드

Determine if the exception is in the "do not report" list.
protected shouldntReport ( Exception $e ) : boolean
$e Exception
리턴 boolean

프로퍼티 상세

$dontReport 보호되어 있는 프로퍼티

A list of the exception types that should not be reported.
protected array $dontReport
리턴 array