replace is_object with is_array when reserving jobs since Resque::pop actually returns an array instead of an object

This commit is contained in:
Salimane Adjao Moustapha 2011-12-08 11:15:46 +08:00
parent cd47df2458
commit 458fd6488b
2 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ class Resque
* return it.
*
* @param string $queue The name of the queue to fetch an item from.
* @return object Decoded item from the queue.
* @return array Decoded item from the queue.
*/
public static function pop($queue)
{

View File

@ -37,7 +37,7 @@ class Resque_Job
* Instantiate a new instance of a job.
*
* @param string $queue The queue that the job belongs to.
* @param object $payload Object containing details of the job.
* @param array $payload array containing details of the job.
*/
public function __construct($queue, $payload)
{
@ -84,7 +84,7 @@ class Resque_Job
public static function reserve($queue)
{
$payload = Resque::pop($queue);
if(!is_object($payload)) {
if(!is_array($payload)) {
return false;
}