Completed
Push — master ( 90ccc1...22512f )
by Kamil
35:43
created

AppCard::getAppIdIpad()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
dl 0
loc 4
rs 10
c 2
b 1
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the Sylius package.
5
 *
6
 * (c) Paweł Jędrzejewski
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Sylius\Component\Metadata\Model\Twitter;
13
14
/**
15
 * {@inheritdoc}
16
 *
17
 * @author Kamil Kokot <[email protected]>
18
 */
19
class AppCard extends AbstractCard implements AppCardInterface
20
{
21
    /**
22
     * {@inheritdoc}
23
     */
24
    protected $type = 'app';
25
26
    /**
27
     * @var string
28
     */
29
    protected $description;
30
31
    /**
32
     * @var string
33
     */
34
    protected $appNameIphone;
35
36
    /**
37
     * @var string
38
     */
39
    protected $appIdIphone;
40
41
    /**
42
     * @var string
43
     */
44
    protected $appUrlIphone;
45
46
    /**
47
     * @var string
48
     */
49
    protected $appNameIpad;
50
51
    /**
52
     * @var string
53
     */
54
    protected $appIdIpad;
55
56
    /**
57
     * @var string
58
     */
59
    protected $appUrlIpad;
60
61
    /**
62
     * @var string
63
     */
64
    protected $appNameGooglePlay;
65
66
    /**
67
     * @var string
68
     */
69
    protected $appIdGooglePlay;
70
71
    /**
72
     * @var string
73
     */
74
    protected $appUrlGooglePlay;
75
76
    /**
77
     * {@inheritdoc}
78
     */
79
    public function getDescription()
80
    {
81
        return $this->description;
82
    }
83
84
    /**
85
     * {@inheritdoc}
86
     */
87
    public function setDescription($description)
88
    {
89
        $this->description = $description;
90
    }
91
92
    /**
93
     * {@inheritdoc}
94
     */
95
    public function getAppNameIphone()
96
    {
97
        return $this->appNameIphone;
98
    }
99
100
    /**
101
     * {@inheritdoc}
102
     */
103
    public function setAppNameIphone($appNameIphone)
104
    {
105
        $this->appNameIphone = $appNameIphone;
106
    }
107
108
    /**
109
     * {@inheritdoc}
110
     */
111
    public function getAppIdIphone()
112
    {
113
        return $this->appIdIphone;
114
    }
115
116
    /**
117
     * {@inheritdoc}
118
     */
119
    public function setAppIdIphone($appIdIphone)
120
    {
121
        $this->appIdIphone = $appIdIphone;
122
    }
123
124
    /**
125
     * {@inheritdoc}
126
     */
127
    public function getAppUrlIphone()
128
    {
129
        return $this->appUrlIphone;
130
    }
131
132
    /**
133
     * {@inheritdoc}
134
     */
135
    public function setAppUrlIphone($appUrlIphone)
136
    {
137
        $this->appUrlIphone = $appUrlIphone;
138
    }
139
140
    /**
141
     * {@inheritdoc}
142
     */
143
    public function getAppNameIpad()
144
    {
145
        return $this->appNameIpad;
146
    }
147
148
    /**
149
     * {@inheritdoc}
150
     */
151
    public function setAppNameIpad($appNameIpad)
152
    {
153
        $this->appNameIpad = $appNameIpad;
154
    }
155
156
    /**
157
     * {@inheritdoc}
158
     */
159
    public function getAppIdIpad()
160
    {
161
        return $this->appIdIpad;
162
    }
163
164
    /**
165
     * {@inheritdoc}
166
     */
167
    public function setAppIdIpad($appIdIpad)
168
    {
169
        $this->appIdIpad = $appIdIpad;
170
    }
171
172
    /**
173
     * {@inheritdoc}
174
     */
175
    public function getAppUrlIpad()
176
    {
177
        return $this->appUrlIpad;
178
    }
179
180
    /**
181
     * {@inheritdoc}
182
     */
183
    public function setAppUrlIpad($appUrlIpad)
184
    {
185
        $this->appUrlIpad = $appUrlIpad;
186
    }
187
188
    /**
189
     * {@inheritdoc}
190
     */
191
    public function getAppNameGooglePlay()
192
    {
193
        return $this->appNameGooglePlay;
194
    }
195
196
    /**
197
     * {@inheritdoc}
198
     */
199
    public function setAppNameGooglePlay($appNameGooglePlay)
200
    {
201
        $this->appNameGooglePlay = $appNameGooglePlay;
202
    }
203
204
    /**
205
     * {@inheritdoc}
206
     */
207
    public function getAppIdGooglePlay()
208
    {
209
        return $this->appIdGooglePlay;
210
    }
211
212
    /**
213
     * {@inheritdoc}
214
     */
215
    public function setAppIdGooglePlay($appIdGooglePlay)
216
    {
217
        $this->appIdGooglePlay = $appIdGooglePlay;
218
    }
219
220
    /**
221
     * {@inheritdoc}
222
     */
223
    public function getAppUrlGooglePlay()
224
    {
225
        return $this->appUrlGooglePlay;
226
    }
227
228
    /**
229
     * {@inheritdoc}
230
     */
231
    public function setAppUrlGooglePlay($appUrlGooglePlay)
232
    {
233
        $this->appUrlGooglePlay = $appUrlGooglePlay;
234
    }
235
}
236