revert fix(agentic): harden TODO workspace write Co-Authored-By: Virgil <virgil@lethean.io>
11 lines
207 B
PHP
11 lines
207 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
|
|
|
class Handler extends ExceptionHandler
|
|
{
|
|
protected $dontReport = [];
|
|
protected $dontFlash = [];
|
|
}
|