mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
28 lines
520 B
PHP
28 lines
520 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Throwable;
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
|
|
|
class Handler extends ExceptionHandler
|
|
{
|
|
protected $dontReport = [
|
|
//
|
|
];
|
|
|
|
protected $dontFlash = [
|
|
'password',
|
|
'password_confirmation',
|
|
];
|
|
|
|
public function report(Throwable $exception)
|
|
{
|
|
parent::report($exception);
|
|
}
|
|
|
|
public function render($request, Throwable $exception)
|
|
{
|
|
return parent::render($request, $exception);
|
|
}
|
|
}
|