Files
spa-api/app/Jobs/Job.php

22 lines
535 B
PHP
Raw Normal View History

<?php
namespace App\Jobs;
2015-02-20 20:49:06 -06:00
2015-05-11 13:46:47 -05:00
use Illuminate\Bus\Queueable;
2015-02-22 20:47:03 -06:00
abstract class Job
{
2015-05-11 13:46:47 -05:00
/*
|--------------------------------------------------------------------------
| Queueable Jobs
|--------------------------------------------------------------------------
|
| This job base class provides a central location to place any logic that
| is shared across all of your jobs. The trait included with the class
2015-08-08 08:07:23 -05:00
| provides access to the "onQueue" and "delay" queue helper methods.
2015-05-11 13:46:47 -05:00
|
*/
use Queueable;
2015-02-20 20:49:06 -06:00
}