Adding additional missing calls to classutils instead of get_class
This commit is contained in:
parent
cbe4987e18
commit
c4a2eaea49
1 changed files with 2 additions and 2 deletions
|
@ -493,7 +493,7 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! $class->isInheritanceTypeNone()) {
|
if ( ! $class->isInheritanceTypeNone()) {
|
||||||
$class = $this->em->getClassMetadata(get_class($entity));
|
$class = $this->em->getClassMetadata(ClassUtils::getClass($entity));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fire PreFlush lifecycle callbacks
|
// Fire PreFlush lifecycle callbacks
|
||||||
|
@ -1398,7 +1398,7 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
public function removeFromIdentityMap($entity)
|
public function removeFromIdentityMap($entity)
|
||||||
{
|
{
|
||||||
$oid = spl_object_hash($entity);
|
$oid = spl_object_hash($entity);
|
||||||
$classMetadata = $this->em->getClassMetadata(get_class($entity));
|
$classMetadata = $this->em->getClassMetadata(ClassUtils::getClass($entity));
|
||||||
$idHash = implode(' ', $this->entityIdentifiers[$oid]);
|
$idHash = implode(' ', $this->entityIdentifiers[$oid]);
|
||||||
|
|
||||||
if ($idHash === '') {
|
if ($idHash === '') {
|
||||||
|
|
Loading…
Add table
Reference in a new issue