Store   A
last analyzed

Complexity

Total Complexity 12

Size/Duplication

Total Lines 128
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 12
lcom 0
cbo 0
dl 0
loc 128
rs 10
c 0
b 0
f 0

12 Methods

Rating   Name   Duplication   Size   Complexity  
A getId() 0 4 1
A setId() 0 4 1
A getListId() 0 4 1
A setListId() 0 4 1
A getName() 0 4 1
A setName() 0 4 1
A getDomain() 0 4 1
A setDomain() 0 4 1
A getEmailAddress() 0 4 1
A setEmailAddress() 0 4 1
A getCurrencyCode() 0 4 1
A setCurrencyCode() 0 4 1
1
<?php
2
/*
3
 * This file is part of the MailChimpEcommerceBundle package.
4
 *
5
 * Copyright (c) 2017 kevin92dev.es
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 *
10
 * Feel free to edit as you please, and have fun.
11
 *
12
 * @author Kevin Murillo <[email protected]>
13
 */
14
15
namespace Kevin92dev\MailChimpEcommerceBundle\Entities;
16
17
class Store
18
{
19
    /**
20
     * @var string
21
     */
22
    private $id;
23
24
    /**
25
     * @var string
26
     */
27
    private $listId;
28
29
    /**
30
     * @var string
31
     */
32
    private $name;
33
34
    /**
35
     * @var string
36
     */
37
    private $domain;
38
39
    /**
40
     * @var string
41
     */
42
    private $emailAddress;
43
44
    /**
45
     * @var string
46
     */
47
    private $currencyCode;
48
49
    /**
50
     * @return string
51
     */
52
    public function getId()
53
    {
54
        return $this->id;
55
    }
56
57
    /**
58
     * @param string $id
59
     */
60
    public function setId($id)
61
    {
62
        $this->id = $id;
63
    }
64
65
    /**
66
     * @return string
67
     */
68
    public function getListId()
69
    {
70
        return $this->listId;
71
    }
72
73
    /**
74
     * @param string $listId
75
     */
76
    public function setListId($listId)
77
    {
78
        $this->listId = $listId;
79
    }
80
81
    /**
82
     * @return string
83
     */
84
    public function getName()
85
    {
86
        return $this->name;
87
    }
88
89
    /**
90
     * @param string $name
91
     */
92
    public function setName($name)
93
    {
94
        $this->name = $name;
95
    }
96
97
    /**
98
     * @return string
99
     */
100
    public function getDomain()
101
    {
102
        return $this->domain;
103
    }
104
105
    /**
106
     * @param string $domain
107
     */
108
    public function setDomain($domain)
109
    {
110
        $this->domain = $domain;
111
    }
112
113
    /**
114
     * @return string
115
     */
116
    public function getEmailAddress()
117
    {
118
        return $this->emailAddress;
119
    }
120
121
    /**
122
     * @param string $emailAddress
123
     */
124
    public function setEmailAddress($emailAddress)
125
    {
126
        $this->emailAddress = $emailAddress;
127
    }
128
129
    /**
130
     * @return string
131
     */
132
    public function getCurrencyCode()
133
    {
134
        return $this->currencyCode;
135
    }
136
137
    /**
138
     * @param string $currencyCode
139
     */
140
    public function setCurrencyCode($currencyCode)
141
    {
142
        $this->currencyCode = $currencyCode;
143
    }
144
}