vito/app/Jobs/Job.php
Saeed Vaziry 38e23a1ceb
fix consecutive deployment issue (#62)
* fix consecutive deployment issue

* fix styles
2023-09-29 23:08:56 +02:00

15 lines
344 B
PHP
Executable File

<?php
namespace App\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 Job implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
}