mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 05:32:20 +00:00
- Update composer packages - Added WoodpeckerCI tests - Updated links in composer package - Stricter typing
22 lines
426 B
PHP
22 lines
426 B
PHP
<?php
|
|
|
|
namespace Resque\Job;
|
|
|
|
/**
|
|
* Job Interface
|
|
*
|
|
* @package Resque/Job
|
|
* @author Daniel Mason <daniel@m2.nz>
|
|
* @license http://www.opensource.org/licenses/mit-license.php
|
|
*/
|
|
interface FactoryInterface
|
|
{
|
|
/**
|
|
* @param $className
|
|
* @param array $args
|
|
* @param $queue
|
|
*
|
|
* @return \Resque\Job\JobInterface
|
|
*/
|
|
public function create($className, $args, $queue);
|
|
}
|