diff --git a/src/ApcuCache.php b/src/ApcuCache.php index 74432ee..7d29f67 100644 --- a/src/ApcuCache.php +++ b/src/ApcuCache.php @@ -137,11 +137,6 @@ public function has($key) $key = $this->_generateKey($key); $this->_validateKey($key); - if($this->_cacheKeys[$key]) - { - return true; - } - return apcu_exists($key); } }