Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' into stories/at/add-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez authored Sep 12, 2017
2 parents d8b3a8c + c92d6d1 commit 00dc68d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions DJJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ public function getDelay() {
}
}

/**
* Job handler interface which can be safely enqueued.
*/
interface DJJobHandlerInterface {
/**
* Method that will perform the job when retrieved from the jobs table.
*/
public function perform();
}

/**
* Base class for delayed job.
*/
Expand Down

0 comments on commit 00dc68d

Please sign in to comment.