Merge "[JobQueue] Make doIsEmpty return bool in all cases."
[lhc/web/wiklou.git] / includes / job / JobQueueDB.php
index fc2ea7d..9b4e500 100644 (file)
@@ -54,6 +54,7 @@ class JobQueueDB extends JobQueue {
                );
 
                $wgMemc->add( $key, $found ? 'false' : 'true', self::CACHE_TTL );
+               return (bool)$found;
        }
 
        /**