Skip to content

Commit

Permalink
Merge 0f69b89 into 8f1d28c
Browse files Browse the repository at this point in the history
  • Loading branch information
andheiberg committed Jul 25, 2019
2 parents 8f1d28c + 0f69b89 commit 44e8c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Stash/Driver/Redis.php
Expand Up @@ -216,7 +216,7 @@ public function clear($key = null)
$keyString = $this->makeKeyString($key, true);
$keyReal = $this->makeKeyString($key);
$this->redis->incr($keyString); // increment index for children items
$this->redis->delete($keyReal); // remove direct item.
$this->redis->del($keyReal); // remove direct item.
$this->keyCache = array();

return true;
Expand Down

0 comments on commit 44e8c47

Please sign in to comment.