We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0809be0 commit 56ec8daCopy full SHA for 56ec8da
src/Caching/Storages/SQLiteStorage.php
@@ -111,7 +111,7 @@ public function remove($key)
111
public function clean(array $conditions)
112
{
113
if (!empty($conditions[Cache::ALL])) {
114
- $this->pdo->prepare('DELETE FROM cache');
+ $this->pdo->prepare('DELETE FROM cache')->execute();
115
116
} elseif (!empty($conditions[Cache::TAGS])) {
117
$tags = (array) $conditions[Cache::TAGS];
0 commit comments