PHP Класс framework\exceptions\Handler

Наследование: extends Illuminate\Foundation\Exceptions\Handler
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$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