Parcourir la source

Updated get to fetch

Replaced get for fetch method. Get... does not exist!
Marc il y a 11 ans
Parent
commit
706321ab4d
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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 {