We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/** * {@inheritdoc} */ public function destroy(string sessionId = null) -> boolean { var id; if sessionId === null { let id = this->getId(); } else { let id = sessionId; } return this->_redis->exists(id) ? this->_redis->delete(id) : true; }
the id should be _PHCR+prefix+id
The text was updated successfully, but these errors were encountered:
#12326
Sorry, something went wrong.
No branches or pull requests
when session stored in redis , delete a wrong redis key
Details
the id should be _PHCR+prefix+id
The text was updated successfully, but these errors were encountered: