stop executing executeDeletions when there is nothing to to delete anymore
This commit is contained in:
parent
f5897d4b0b
commit
8a168bb2ce
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ class UnitOfWork implements PropertyChangedListener
|
||||||
|
|
||||||
// Entity deletions come last and need to be in reverse commit order
|
// Entity deletions come last and need to be in reverse commit order
|
||||||
if ($this->entityDeletions) {
|
if ($this->entityDeletions) {
|
||||||
for ($count = count($commitOrder), $i = $count - 1; $i >= 0; --$i) {
|
for ($count = count($commitOrder), $i = $count - 1; $i >= 0 && $this->entityDeletions; --$i) {
|
||||||
$this->executeDeletions($commitOrder[$i]);
|
$this->executeDeletions($commitOrder[$i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue