mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 08:15:14 +00:00
10 lines
96 B
PHP
10 lines
96 B
PHP
<?php
|
|
|
|
interface Resque_JobInterface
|
|
{
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function perform();
|
|
}
|