diff --git a/src/Caching/Storages/SQLiteStorage.php b/src/Caching/Storages/SQLiteStorage.php index 081a9193..451510e6 100644 --- a/src/Caching/Storages/SQLiteStorage.php +++ b/src/Caching/Storages/SQLiteStorage.php @@ -111,7 +111,7 @@ public function remove($key) public function clean(array $conditions) { if (!empty($conditions[Cache::ALL])) { - $this->pdo->prepare('DELETE FROM cache'); + $this->pdo->prepare('DELETE FROM cache')->execute(); } elseif (!empty($conditions[Cache::TAGS])) { $tags = (array) $conditions[Cache::TAGS];