php-resque/lib/Resque/JobInterface.php

10 lines
108 B
PHP
Raw Normal View History

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