17 lines
270 B
PHP
17 lines
270 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Toby\Architecture;
|
|
|
|
use Illuminate\Foundation\Exceptions\Handler;
|
|
|
|
class ExceptionHandler extends Handler
|
|
{
|
|
protected $dontFlash = [
|
|
"current_password",
|
|
"password",
|
|
"password_confirmation",
|
|
];
|
|
}
|