mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-28 09:51:21 -06:00
5c7df5c04d
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
36 lines
817 B
PHP
36 lines
817 B
PHP
<?php
|
|
/**
|
|
* 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.
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Jobs;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
/**
|
|
* Class Job
|
|
*
|
|
* @package FireflyIII\Jobs
|
|
*/
|
|
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;
|
|
}
|