| Conditions | 6 |
| Paths | 10 |
| Total Lines | 24 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function update(array $newEntityList, array $oldEntityList) |
||
| 15 | { |
||
| 16 | $existingEntityIdList = []; |
||
| 17 | foreach ($newEntityList as $entity) { |
||
| 18 | $existingEntityIdList[$entity->getItemId()] = true; |
||
| 19 | } |
||
| 20 | $normalizedOldEntityList = []; |
||
| 21 | foreach ($oldEntityList as $oldEntity) { |
||
| 22 | if (!array_key_exists($oldEntity->getItemId(), $existingEntityIdList)) { |
||
| 23 | $normalizedOldEntityList[] = $oldEntity; |
||
| 24 | } else { |
||
| 25 | // A new entity have been defined, loop over new entity list and append all entities with the same id |
||
| 26 | $oldEntityId = $oldEntity->getItemId(); |
||
| 27 | foreach ($newEntityList as $newEntityKey => $newEntity) { |
||
| 28 | if ($newEntity->getItemId() == $oldEntityId) { |
||
| 29 | $normalizedOldEntityList[] = $newEntity; |
||
| 30 | unset($newEntityList[$newEntityKey]); |
||
| 31 | } |
||
| 32 | } |
||
| 33 | } |
||
| 34 | } |
||
| 35 | |||
| 36 | return array_merge($normalizedOldEntityList, $newEntityList); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |