php-resque/lib/Resque/JobInterface.php
Daniel Mason ae84530132 - Reformatted files to PSR2 standard
- Removed credis for native phpredis
- Tidied up some docs
- Setting up new travis.ci build
2018-05-25 19:26:54 +12:00

10 lines
108 B
PHP

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