1
0
Fork 0
mirror of synced 2025-04-03 05:13:37 +03:00

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:
TR 2012-11-01 23:59:57 +00:00
parent 98c5b34f2b
commit a65996f74c

View file

@ -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;