1
0
Fork 0

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)
This commit is contained in:
Henrik Hautakoski 2021-08-28 17:47:05 +02:00
parent 8eda7a315c
commit 08c60a6842

View file

@ -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;