Files
ntspi-app/app/Ship/Abstracts/Jobs/JobQueued.php
T
2026-03-20 21:47:02 +05:00

15 lines
365 B
PHP
Executable File

<?php
namespace App\Ship\Abstracts\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
abstract class JobQueued implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
}