Test Failed
Pull Request — master (#10)
by Yo
02:26
created

ListUpdater::update()   B

Complexity

Conditions 6
Paths 10

Size

Total Lines 24
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 24
rs 8.5125
c 0
b 0
f 0
cc 6
eloc 15
nc 10
nop 2
1
<?php
2
namespace Yoanm\ComposerConfigManager\Application\Updater;
3
4
use Yoanm\ComposerConfigManager\Domain\Model\ConfigurationItemInterface;
5
6
class ListUpdater
7
{
8
    /**
9
     * @param ConfigurationItemInterface[] $newEntityList
10
     * @param ConfigurationItemInterface[] $oldEntityList
11
     *
12
     * @return ConfigurationItemInterface[]
13
     */
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