Skip to content

Commit 2e7d1d2

Browse files
committed
Merge pull request bshaffer#336 from ruimarinho/patch-1
Fixed Redis delete command
2 parents bd41360 + dca3af5 commit 2e7d1d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OAuth2/Storage/Redis.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected function expireValue($key)
8383
{
8484
unset($this->cache[$key]);
8585

86-
return $this->redis->delete($key);
86+
return $this->redis->del($key);
8787
}
8888

8989
/* AuthorizationCodeInterface */

0 commit comments

Comments
 (0)