Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F12870208
Handler.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
850 B
Referenced Files
None
Subscribers
None
Handler.php
View Options
<?php
namespace
AuthGrove\Exceptions
;
use
Exception
;
use
Illuminate\Foundation\Exceptions\Handler
as
ExceptionHandler
;
class
Handler
extends
ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*
* @var array
*/
protected
$dontReport
=
[
'Symfony
\C
omponent
\H
ttpKernel
\E
xception
\H
ttpException'
];
/**
* Report or log an exception.
*
* This is a great spot to send exceptions to Sentry, Bugsnag, etc.
*
* @param \Exception $e
* @return void
*/
public
function
report
(
Exception
$e
)
{
return
parent
::
report
(
$e
);
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $e
* @return \Illuminate\Http\Response
*/
public
function
render
(
$request
,
Exception
$e
)
{
return
parent
::
render
(
$request
,
$e
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Nov 17, 15:46 (17 h, 50 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3164628
Default Alt Text
Handler.php (850 B)
Attached To
Mode
rGROVE Auth Grove
Attached
Detach File
Event Timeline
Log In to Comment