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
rdb/DatumConverter.php:37 should be: if (is_subclass_of($val, "\\r\\Query", FALSE) && !is_subclass_of($val, '\r\Datum\Datum', FALSE)) {
if (is_subclass_of($val, "\\r\\Query", FALSE) && !is_subclass_of($val, '\r\Datum\Datum', FALSE)) {
unless I'm doing something wrong, trying to insert anything but a true/false value results in autoloader invoking and causing an error.
adding this fixed it.
The text was updated successfully, but these errors were encountered:
#148 solved this behavior. It may now need some update since the owner hasn't been there for long and the pull hasn't been merged.
Sorry, something went wrong.
I discovered similar behavior. @danielmewes May be possible to review and merge PR #148 ?
[fix] See danielmewes#162
1ed419a
No branches or pull requests
rdb/DatumConverter.php:37 should be:
if (is_subclass_of($val, "\\r\\Query", FALSE) && !is_subclass_of($val, '\r\Datum\Datum', FALSE)) {
unless I'm doing something wrong, trying to insert anything but a true/false value results in autoloader invoking and causing an error.
adding this fixed it.
The text was updated successfully, but these errors were encountered: