11 lines
133 B
PHP
Executable File
11 lines
133 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Ship\Abstracts\Jobs;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
abstract class Job
|
|
{
|
|
use Dispatchable;
|
|
}
|