12 lines
207 B
PHP
12 lines
207 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Exceptions;
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
||
|
|
|
||
|
|
class Handler extends ExceptionHandler
|
||
|
|
{
|
||
|
|
protected $dontReport = [];
|
||
|
|
protected $dontFlash = [];
|
||
|
|
}
|