From 7af91657ae5c4a69d24710088cd45e2f92c095fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 24 Sep 2024 16:36:16 +0100 Subject: [PATCH] revert it.. --- app/Providers/App.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/Providers/App.php b/app/Providers/App.php index 58d9b881d..81c196d9f 100644 --- a/app/Providers/App.php +++ b/app/Providers/App.php @@ -2,8 +2,6 @@ namespace App\Providers; -use App\Exceptions\Handler; -use Illuminate\Contracts\Debug\ExceptionHandler; use Illuminate\Database\Eloquent\Model; use Illuminate\Pagination\Paginator; use Illuminate\Support\Facades\Schema; @@ -27,8 +25,6 @@ class App extends Provider $this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class); } - $this->app->singleton(ExceptionHandler::class, Handler::class); - Sanctum::ignoreMigrations(); }