Update jobs after upgrade to Laravel 5.2

This commit is contained in:
James Cole 2016-01-08 16:00:16 +01:00
parent 7e4b9af315
commit c360cc6db6

21
app/Jobs/Job.php Executable file
View File

@ -0,0 +1,21 @@
<?php
namespace FireflyIII\Jobs;
use Illuminate\Bus\Queueable;
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;
}