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
When model is set to use multiple columns as its primary key it still has if (null === $this->getPrimaryKey() || null === $obj->getPrimaryKey()) condition in generated equals() method instead of using isPrimaryKeyNull method for this test. This leads to confirming, that two models are equal despite the fact they are not.
The text was updated successfully, but these errors were encountered:
When model is set to use multiple columns as its primary key it still has
if (null === $this->getPrimaryKey() || null === $obj->getPrimaryKey())
condition in generatedequals()
method instead of usingisPrimaryKeyNull
method for this test. This leads to confirming, that two models are equal despite the fact they are not.The text was updated successfully, but these errors were encountered: