2016-01-08 09:00:16 -06:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* Job.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms
|
|
|
|
* of the MIT license. See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2016-01-08 09:00:16 -06:00
|
|
|
|
|
|
|
namespace FireflyIII\Jobs;
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
|
2016-01-09 01:20:55 -06:00
|
|
|
/**
|
|
|
|
* Class Job
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Jobs
|
|
|
|
*/
|
2016-01-08 09:00:16 -06:00
|
|
|
abstract class Job
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| 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 "onQueue" and "delay" queue helper methods.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
use Queueable;
|
|
|
|
}
|