mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-23 00:35:13 +00:00
10 lines
130 B
PHP
10 lines
130 B
PHP
|
<?php
|
||
|
|
||
|
interface Resque_Job_FactoryInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return Resque_JobInterface
|
||
|
*/
|
||
|
public function create();
|
||
|
}
|