Documentation

Handler extends Handler
in package

Table of Contents

$dontFlash  : array<string|int, mixed>
A list of the inputs that are never flashed for validation exceptions.
$dontReport  : array<string|int, mixed>
A list of the exception types that are not reported.
render()  : Response
Render an exception into an HTTP response.
report()  : void
Report or log an exception.
sendEmail()  : mixed

Properties

$dontFlash

A list of the inputs that are never flashed for validation exceptions.

protected array<string|int, mixed> $dontFlash = ['password', 'password_confirmation']

$dontReport

A list of the exception types that are not reported.

protected array<string|int, mixed> $dontReport = []

Methods

render()

Render an exception into an HTTP response.

public render(Request $request, Exception $exception) : Response
Parameters
$request : Request
$exception : Exception
Return values
Response

report()

Report or log an exception.

public report(Exception $exception) : void
Parameters
$exception : Exception
Return values
void

sendEmail()

public sendEmail(Exception $exception) : mixed
Parameters
$exception : Exception
Return values
mixed

Search results