Browse Source

Updated get to fetch

Replaced get for fetch method. Get... does not exist!
Marc 11 years ago
parent
commit
706321ab4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Service/GearmanCacheWrapper.php

+ 1 - 1
Service/GearmanCacheWrapper.php

@@ -147,7 +147,7 @@ class GearmanCacheWrapper
     {
         if ($this->cache->contains($this->cacheId)) {
 
-            $this->workerCollection = $this->cache->get($this->cacheId);
+            $this->workerCollection = $this->cache->fetch($this->cacheId);
 
         } else {