GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Area::getCountries()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * LeadCommerce\Shopware\SDK\Entity
4
 *
5
 * Copyright 2016 LeadCommerce
6
 *
7
 * @author Alexander Mahrt <[email protected]>
8
 * @copyright 2016 LeadCommerce <[email protected]>
9
 */
10
namespace LeadCommerce\Shopware\SDK\Entity;
11
12
/**
13
 * Class Area
14
 */
15
class Area extends Base
16
{
17
    /**
18
     * @var int
19
     */
20
    protected $id;
21
    /**
22
     * @var string
23
     */
24
    protected $name;
25
    /**
26
     * @var bool
27
     */
28
    protected $active;
29
    /**
30
     * @var Country[]
31
     */
32
    protected $countries;
33
34
    /**
35
     * @return int
36
     */
37
    public function getId()
38
    {
39
        return $this->id;
40
    }
41
42
    /**
43
     * @param int $id
44
     *
45
     * @return Area
46
     */
47
    public function setId($id)
48
    {
49
        $this->id = $id;
50
51
        return $this;
52
    }
53
54
    /**
55
     * @return string
56
     */
57
    public function getName()
58
    {
59
        return $this->name;
60
    }
61
62
    /**
63
     * @param string $name
64
     *
65
     * @return Area
66
     */
67
    public function setName($name)
68
    {
69
        $this->name = $name;
70
71
        return $this;
72
    }
73
74
    /**
75
     * @return bool
76
     */
77
    public function isActive()
78
    {
79
        return $this->active;
80
    }
81
82
    /**
83
     * @param bool $active
84
     *
85
     * @return Area
86
     */
87
    public function setActive($active)
88
    {
89
        $this->active = $active;
90
91
        return $this;
92
    }
93
94
    /**
95
     * @return Country[]
96
     */
97
    public function getCountries()
98
    {
99
        return $this->countries;
100
    }
101
102
    /**
103
     * @param Country[] $countries
104
     *
105
     * @return Area
106
     */
107
    public function setCountries($countries)
108
    {
109
        $this->countries = $countries;
110
111
        return $this;
112
    }
113
}
114