From 08c60a6842f4611cf207fc905fee2d69cb47ebc6 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sat, 28 Aug 2021 17:47:05 +0200 Subject: [PATCH] app/Jobs/ImportProfession.php: Fixing Exception class used incorrectly. "Exception" class used without "use Exception;" results in php trying to find an "App\Jobs\Exception" class (which there is none of) --- app/Jobs/ImportProfession.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Jobs/ImportProfession.php b/app/Jobs/ImportProfession.php index a2028ca..a91d9e4 100644 --- a/app/Jobs/ImportProfession.php +++ b/app/Jobs/ImportProfession.php @@ -22,6 +22,8 @@ use Illuminate\Queue\SerializesModels; use Illuminate\Support\Str; use Illuminate\Support\Facades\DB; +use Exception; + class ImportProfession implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;