mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
ae84530132
- Removed credis for native phpredis - Tidied up some docs - Setting up new travis.ci build
13 lines
227 B
PHP
13 lines
227 B
PHP
<?php
|
|
|
|
interface Resque_Job_FactoryInterface
|
|
{
|
|
/**
|
|
* @param $className
|
|
* @param array $args
|
|
* @param $queue
|
|
* @return Resque_JobInterface
|
|
*/
|
|
public function create($className, $args, $queue);
|
|
}
|