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
I think there is a mistake at line 386 in the function dbObject->with($objectName)
Currently if (!property_exists ($this, 'relations') && !isset ($this->relations[$name]))
The correct conditions should be if (!property_exists ($this, 'relations') || !isset ($this->relations[$objectName]))
Correct me if I'm wrong.
This wrapper is great, and exactly what I need. Excellent work.
Thank you.
The text was updated successfully, but these errors were encountered:
I think there is a mistake at line 386 in the function dbObject->with($objectName)
Currently
if (!property_exists ($this, 'relations') && !isset ($this->relations[$name]))
The correct conditions should be
if (!property_exists ($this, 'relations') || !isset ($this->relations[$objectName]))
Correct me if I'm wrong.
This wrapper is great, and exactly what I need. Excellent work.
Thank you.
The text was updated successfully, but these errors were encountered: