Skip to content

Instantly share code, notes, and snippets.

@indrekots
Last active December 25, 2015 21:09
Show Gist options
  • Save indrekots/7040217 to your computer and use it in GitHub Desktop.
Save indrekots/7040217 to your computer and use it in GitHub Desktop.
Sample job class using php-resque
<?php
class HelloJob implements Job
{
public function perform()
{
echo "Hello world";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment