agent/codex/api/php/app/Exceptions/Handler.php

12 lines
207 B
PHP
Raw Normal View History

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