php-resque/lib/Resque/Job/FactoryInterface.php

10 lines
130 B
PHP
Raw Normal View History

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