Skip to content

Instantly share code, notes, and snippets.

@indrekots
Last active December 25, 2015 21:09
Show Gist options
  • Save indrekots/7040248 to your computer and use it in GitHub Desktop.
Save indrekots/7040248 to your computer and use it in GitHub Desktop.
Interface for job classes when using php-resque
<?php
/**
* Defines a php-resque job
*/
interface Job
{
/**
* Executes the job
*/
public function perform();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment