BIG-28720 Allowing to use a factory instead of manually instantite the Jobs

This commit is contained in:
Sebastian Machuca 2016-10-06 12:49:15 +11:00
parent 15a14d8a86
commit 7d2ce1bc8b
No known key found for this signature in database
GPG key ID: 4B3DA17F9CCF39DE
5 changed files with 106 additions and 22 deletions

View file

@ -0,0 +1,9 @@
<?php
interface Resque_JobInterface
{
/**
* @return bool
*/
public function perform();
}