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
The Rediska_Serializer_Adapter_Json::unserialize method is returning the same value that is being passed in to be unserialized. Please see below:
Lines 88-97
public function unserialize($value) { $decodedValue = json_decode($value); if ($decodedValue === null && $value !== 'null') { throw new Rediska_Serializer_Adapter_Exception("Can't unserialize value"); } return $value; }
The last line should, instead be "return $decodedValue;".
public function unserialize($value) { $decodedValue = json_decode($value); if ($decodedValue === null && $value !== 'null') { throw new Rediska_Serializer_Adapter_Exception("Can't unserialize value"); } return $decodedValue; }
The text was updated successfully, but these errors were encountered:
Merge pull request #76 from trickeyone/master
8eddc95
Fixing issue with Rediska_Serializer_Adapter_Json::unserialize method not return unserialized value, Issue #75
Btw, they fixed it in 16f1224, but this issue remained open
Sorry, something went wrong.
No branches or pull requests
The Rediska_Serializer_Adapter_Json::unserialize method is returning the same value that is being passed in to be unserialized. Please see below:
Lines 88-97
The last line should, instead be "return $decodedValue;".
The text was updated successfully, but these errors were encountered: