2016-10-06 01:49:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
interface Resque_Job_FactoryInterface
|
|
|
|
{
|
|
|
|
/**
|
2016-10-06 05:07:16 +00:00
|
|
|
* @param $className
|
2016-10-06 01:49:15 +00:00
|
|
|
* @return Resque_JobInterface
|
|
|
|
*/
|
2016-10-06 05:07:16 +00:00
|
|
|
public function create($className);
|
2016-10-06 01:49:15 +00:00
|
|
|
}
|