notice is thrown up if no identifier values found
wrapping the setting of value with an array_key_exists to prevent a notice from being thrown
This commit is contained in:
parent
98c5b34f2b
commit
a65996f74c
1 changed files with 3 additions and 1 deletions
|
@ -1695,7 +1695,9 @@ class BasicEntityPersister
|
||||||
$idValues = $class->getIdentifierValues($value);
|
$idValues = $class->getIdentifierValues($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
$value = $idValues[key($idValues)];
|
if (array_key_exists(key($idValues), $idValues)){
|
||||||
|
$value = $idValues[key($idValues)];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $value;
|
return $value;
|
||||||
|
|
Loading…
Add table
Reference in a new issue