php-resque/lib/Resque/Job/FactoryInterface.php
Sebastian Machuca de22db6826
Making it compatible with PHP < 5.5
Making the factory receive the classname
2016-10-06 16:07:16 +11:00

11 lines
165 B
PHP

<?php
interface Resque_Job_FactoryInterface
{
/**
* @param $className
* @return Resque_JobInterface
*/
public function create($className);
}