Skip to content

Instantly share code, notes, and snippets.

@Mezzle
Created February 25, 2015 16:04
Show Gist options
  • Save Mezzle/0ee7c1e361e6a6032c9d to your computer and use it in GitHub Desktop.
Save Mezzle/0ee7c1e361e6a6032c9d to your computer and use it in GitHub Desktop.
public function getServiceConfig()
{
return array(
'factories' => array(
'Zf2Resque\Service\ResqueWorker' => function ($sm)
{
$QUEUE = getenv('QUEUE');
$queues = explode(',', $QUEUE);
return new \Zf2Resque\Service\ResqueWorker($queues, $sm);
}
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment