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