mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 13:42:22 +00:00
9 lines
96 B
PHP
9 lines
96 B
PHP
<?php
|
|
|
|
interface Resque_JobInterface
|
|
{
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function perform();
|
|
}
|