2015-06-01 15:43:37 +01:00
|
|
|
<?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
|
|
|
|
|
| provides access to the "queueOn" and "delay" queue helper methods.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
use Queueable;
|
2015-02-20 20:49:06 -06:00
|
|
|
}
|