CountryNameCollection::get()   C
last analyzed

Complexity

Conditions 11
Paths 9

Size

Total Lines 25
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 37.1359

Importance

Changes 0
Metric Value
dl 0
loc 25
ccs 6
cts 15
cp 0.4
rs 5.2653
c 0
b 0
f 0
cc 11
eloc 16
nc 9
nop 1
crap 37.1359

How to fix   Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

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