PHP 클래스 framework\exceptions\Handler

상속: extends Illuminate\Foundation\Exceptions\Handler
파일 보기 프로젝트 열기: vinelab/lucid

보호된 프로퍼티들

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

공개 메소드들

메소드 설명
render ( Illuminate\Http\Request $request, Exception $exception ) : Illuminate\Http\Response Render an exception into an HTTP response.
report ( Exception $exception ) : void Report or log an exception.

보호된 메소드들

메소드 설명
unauthenticated ( Illuminate\Http\Request $request, Illuminate\Auth\AuthenticationException $exception ) : Illuminate\Http\Response Convert an authentication exception into an unauthenticated response.

메소드 상세

render() 공개 메소드

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

report() 공개 메소드

This is a great spot to send exceptions to Sentry, Bugsnag, etc.
public report ( Exception $exception ) : void
$exception Exception
리턴 void

unauthenticated() 보호된 메소드

Convert an authentication exception into an unauthenticated response.
protected unauthenticated ( Illuminate\Http\Request $request, Illuminate\Auth\AuthenticationException $exception ) : Illuminate\Http\Response
$request Illuminate\Http\Request
$exception Illuminate\Auth\AuthenticationException
리턴 Illuminate\Http\Response

프로퍼티 상세

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

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