AcceptClientParams::getMobile()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace PimpayBundle\Model;
4
5
/**
6
 * Class AcceptClientParams
7
 * @package PimpayBundle\Model
8
 */
9
class AcceptClientParams
10
{
11
    /**
12
     * @var string
13
     */
14
    private $legalEntityName;
15
16
    /**
17
     * @var string
18
     */
19
    private $tin;
20
21
    /**
22
     * @var string
23
     */
24
    private $shopName;
25
26
    /**
27
     * @var string
28
     */
29
    private $email;
30
31
    /**
32
     * @var string
33
     */
34
    private $mobile;
35
36
    /**
37
     * @return string
38
     */
39
    public function getLegalEntityName(): string
40
    {
41
        return $this->legalEntityName;
42
    }
43
44
    /**
45
     * @param string $legalEntityName
46
     * @return $this
47
     */
48
    public function setLegalEntityName(string $legalEntityName)
49
    {
50
        $this->legalEntityName = $legalEntityName;
51
52
        return $this;
53
    }
54
55
    /**
56
     * @return string
57
     */
58
    public function getTin(): string
59
    {
60
        return $this->tin;
61
    }
62
63
    /**
64
     * @param string $tin
65
     * @return $this
66
     */
67
    public function setTin(string $tin)
68
    {
69
        $this->tin = $tin;
70
71
        return $this;
72
    }
73
74
    /**
75
     * @return string
76
     */
77
    public function getShopName(): string
78
    {
79
        return $this->shopName;
80
    }
81
82
    /**
83
     * @param string $shopName
84
     * @return $this
85
     */
86
    public function setShopName(string $shopName)
87
    {
88
        $this->shopName = $shopName;
89
90
        return $this;
91
    }
92
93
    /**
94
     * @return string
95
     */
96
    public function getEmail(): string
97
    {
98
        return $this->email;
99
    }
100
101
    /**
102
     * @param string $email
103
     * @return $this
104
     */
105
    public function setEmail(string $email)
106
    {
107
        $this->email = $email;
108
109
        return $this;
110
    }
111
112
    /**
113
     * @return string
114
     */
115
    public function getMobile(): string
116
    {
117
        return $this->mobile;
118
    }
119
120
    /**
121
     * @param string $mobile
122
     * @return $this
123
     */
124
    public function setMobile(string $mobile)
125
    {
126
        $this->mobile = $mobile;
127
128
        return $this;
129
    }
130
}
131