Skip to content

Commit

Permalink
Adding base job class
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Dec 18, 2015
1 parent fc7de43 commit c34d50b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions app/Jobs/Job.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

namespace App\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;
}

0 comments on commit c34d50b

Please sign in to comment.