mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 13:42:22 +00:00
12 lines
212 B
PHP
12 lines
212 B
PHP
<?php
|
|
|
|
interface Resque_Job_FactoryInterface
|
|
{
|
|
/**
|
|
* @param $className
|
|
* @param array $args
|
|
* @param $queue
|
|
* @return Resque_JobInterface
|
|
*/
|
|
public function create($className, array $args, $queue);
|
|
}
|