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

refactoring getIndividualValue for valid key value

refactoring getIndividualValue
This commit is contained in:
TR 2012-11-02 00:33:55 +00:00
parent a65996f74c
commit 185a0fb19c

View file

@ -1695,9 +1695,10 @@ class BasicEntityPersister
$idValues = $class->getIdentifierValues($value); $idValues = $class->getIdentifierValues($value);
} }
if (array_key_exists(key($idValues), $idValues)){ $key = key($idValues);
$value = $idValues[key($idValues)]; if (null !== $key){
} $value = $idValues[$key];
}
} }
return $value; return $value;