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:
parent
8eda7a315c
commit
08c60a6842
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue