Skip to content

Commit e94e354

Browse files
author
Zacharias Luiten
committed
Fix #4252 Cascade first before refreshing the entity itself so toMany associations are not reset to empty collections
1 parent 8366a31 commit e94e354

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Doctrine/ORM/UnitOfWork.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2149,12 +2149,12 @@ private function doRefresh($entity, array &$visited)
21492149
throw ORMInvalidArgumentException::entityNotManaged($entity);
21502150
}
21512151

2152+
$this->cascadeRefresh($entity, $visited);
2153+
21522154
$this->getEntityPersister($class->name)->refresh(
21532155
array_combine($class->getIdentifierFieldNames(), $this->entityIdentifiers[$oid]),
21542156
$entity
21552157
);
2156-
2157-
$this->cascadeRefresh($entity, $visited);
21582158
}
21592159

21602160
/**

0 commit comments

Comments
 (0)