Allow 0 id for Entity
When using a 0 id, it's throwing InvalidArgumentException (Binding entities to query parameters only allowed for entities that have an identifier.)
This commit is contained in:
parent
fc40c437cb
commit
84477440b6
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ abstract class AbstractQuery
|
||||||
|
|
||||||
$value = $values[$class->getSingleIdentifierFieldName()];
|
$value = $values[$class->getSingleIdentifierFieldName()];
|
||||||
|
|
||||||
if ( ! $value) {
|
if ( ! isset($value)) {
|
||||||
throw new \InvalidArgumentException(
|
throw new \InvalidArgumentException(
|
||||||
"Binding entities to query parameters only allowed for entities that have an identifier."
|
"Binding entities to query parameters only allowed for entities that have an identifier."
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue