diff --git a/src/CacheItem.php b/src/CacheItem.php index 9a38750..b719279 100644 --- a/src/CacheItem.php +++ b/src/CacheItem.php @@ -39,7 +39,7 @@ public function getExpires() public function isHit() { - if ($this->expires !== 0 && $this->expires <= time()) { + if ($this->expires !== 0 && $this->expires < time()) { return false; }