mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 16:25:14 +00:00
de22db6826
Making the factory receive the classname
11 lines
165 B
PHP
11 lines
165 B
PHP
<?php
|
|
|
|
interface Resque_Job_FactoryInterface
|
|
{
|
|
/**
|
|
* @param $className
|
|
* @return Resque_JobInterface
|
|
*/
|
|
public function create($className);
|
|
}
|