Completed
Push — master ( 0da056...260312 )
by Aleksander
05:02
created

AddressOutlet::getEstate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
ccs 2
cts 2
cp 1
crap 1
rs 10
1
<?php
2
3
namespace Yandex\Market\Partner\Models;
4
5
use Yandex\Common\Model;
6
7
class AddressOutlet extends Model
8
{
9
10
    protected $city = null;
11
12
    protected $street = null;
13
14
    protected $number = null;
15
16
    protected $building = null;
17
18
    protected $estate = null;
19
20
    protected $block = null;
21
22
    protected $additional = null;
23
24
    protected $km = null;
25
26
    /**
27
     * @return null
28
     */
29 1
    public function getCity()
30
    {
31 1
        return $this->city;
32
    }
33
34
    /**
35
     * @return null
36
     */
37 1
    public function getStreet()
38
    {
39 1
        return $this->street;
40
    }
41
42
    /**
43
     * @return null
44
     */
45 1
    public function getNumber()
46
    {
47 1
        return $this->number;
48
    }
49
50
    /**
51
     * @return null
52
     */
53 1
    public function getBuilding()
54
    {
55 1
        return $this->building;
56
    }
57
58
    /**
59
     * @return null
60
     */
61 1
    public function getEstate()
62
    {
63 1
        return $this->estate;
64
    }
65
66
    /**
67
     * @return null
68
     */
69 1
    public function getBlock()
70
    {
71 1
        return $this->block;
72
    }
73
74
    /**
75
     * @return null
76
     */
77 1
    public function getAdditional()
78
    {
79 1
        return $this->additional;
80
    }
81
82
    /**
83
     * @return null
84
     */
85 1
    public function getKm()
86
    {
87 1
        return $this->km;
88
    }
89
}
90