Browse Source

Updated get to fetch

Replaced get for fetch method. Get... does not exist!
Marc 11 năm trước cách đây
mục cha
commit
706321ab4d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 {