toby/app/Architecture/ExceptionHandler.php
2022-01-26 08:24:48 +01:00

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",
];
}