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.
Completed
Push — master ( b98016...0803ae )
by Mohamed
40:16 queued 14:56
created

CustomerDefaultBillingAddress::setCity()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

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