You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
// If the type is 'array' or 'json', simply use the array version of the
// function, since the database library doesn't support json directly.
return $this->temp_return_type == 'array' ? "{$method}_array" : $method;
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
According to the comments "If the type is 'array' or 'json', simply use the array version", but it seems that the return statement does not.
protected function _return_type($multi = false)
{
$method = $multi ? 'result' : 'row';
The text was updated successfully, but these errors were encountered: