CountryNameCollection   A
last analyzed

Complexity

Total Complexity 11

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 40%

Importance

Changes 0
Metric Value
wmc 11
lcom 1
cbo 1
dl 0
loc 38
ccs 6
cts 15
cp 0.4
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
C get() 0 25 11
1
<?php
2
3
namespace GeoBase\Countries\Country\CountryName;
4
5
use GeoBase\Countries\ArrayCollection;
6
use GeoBase\Countries\Language\LanguageEntity;
7
8
class CountryNameCollection extends ArrayCollection
9
{
10
    /**
11
     * @var array|CountryNameEntity[]
12
     */
13
    protected $elements;
14
15
    /**
16
     * @param string|LanguageEntity $key
17
     *
18
     * @return null|CountryNameEntity
19
     */
20 1
    public function get($key)
21
    {
22 1
        if (isset($this->elements[$key])) {
23
            return $this->elements[$key];
24
        } else {
25 1
            if (is_string($key)) {
26 1
                foreach ($this->elements as $element) {
27 1
                    if (is_string($element->getLanguage()) && $key === $element->getLanguage()) {
28 1
                        return $element;
29
                    } elseif (
30
                        $element->getLanguage() instanceof LanguageEntity &&
31
                        $key === $element->getLanguage()->getCode()
32
                    ) {
33
                        return $element;
34
                    }
35
                }
36
            } elseif ($key instanceof LanguageEntity) {
37
                foreach ($this->elements as $element) {
38
                    if ($key === $element->getLanguage()) {
39
                        return $element;
40
                    }
41
                }
42
            }
43
        }
44
    }
45
}
46