RegionNameCollection::get()   C
last analyzed

Complexity

Conditions 11
Paths 9

Size

Total Lines 25
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 25
rs 5.2653
c 0
b 0
f 0
cc 11
eloc 16
nc 9
nop 1

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\Regions\Region\RegionName;
4
5
use GeoBase\Countries\ArrayCollection;
6
use GeoBase\Countries\Language\LanguageEntity;
7
8
class RegionNameCollection extends ArrayCollection
9
{
10
    /**
11
     * @var array|RegionNameEntity[]
12
     */
13
    protected $elements;
14
15
    /**
16
     * @param string|LanguageEntity $key
17
     *
18
     * @return null|RegionNameEntity
19
     */
20
    public function get($key)
21
    {
22
        if (isset($this->elements[$key])) {
23
            return $this->elements[$key];
24
        } else {
25
            if (is_string($key)) {
26
                foreach ($this->elements as $element) {
27
                    if (is_string($element->getLanguage()) && $key === $element->getLanguage()) {
28
                        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