From 7588d6150cd43301e550e593ca09596223a317e9 Mon Sep 17 00:00:00 2001 From: Jonathan Hawkes Date: Wed, 10 Apr 2024 13:02:39 -0700 Subject: [PATCH] Clear underlying PSR-16 cache also --- src/Psr6/CachePool.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Psr6/CachePool.php b/src/Psr6/CachePool.php index 8ae88a4..2f9b92a 100644 --- a/src/Psr6/CachePool.php +++ b/src/Psr6/CachePool.php @@ -166,6 +166,7 @@ public function hasItem($key) */ public function clear() { + $this->_cacheEngine->clear(); $this->bufferKeys = []; $this->buffer = []; }