@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace AcquiroPay\Models\Entities; |
6 | 6 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | /** |
128 | 128 | * @return string |
129 | 129 | */ |
130 | - public function getSiteLanguage(): ?string |
|
130 | + public function getSiteLanguage(): ? string |
|
131 | 131 | { |
132 | 132 | return $this->siteLanguage; |
133 | 133 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | /** |
136 | 136 | * @param string $siteLanguage |
137 | 137 | */ |
138 | - public function setSiteLanguage(?string $siteLanguage) |
|
138 | + public function setSiteLanguage(? string $siteLanguage) |
|
139 | 139 | { |
140 | 140 | $this->siteLanguage = $siteLanguage; |
141 | 141 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | /** |
144 | 144 | * @return string |
145 | 145 | */ |
146 | - public function getStatus(): ?string |
|
146 | + public function getStatus(): ? string |
|
147 | 147 | { |
148 | 148 | return $this->status; |
149 | 149 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | /** |
152 | 152 | * @param string $status |
153 | 153 | */ |
154 | - public function setStatus(?string $status) |
|
154 | + public function setStatus(? string $status) |
|
155 | 155 | { |
156 | 156 | $this->status = $status; |
157 | 157 | } |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | /** |
160 | 160 | * @return string |
161 | 161 | */ |
162 | - public function getType(): ?string |
|
162 | + public function getType(): ? string |
|
163 | 163 | { |
164 | 164 | return $this->type; |
165 | 165 | } |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | /** |
168 | 168 | * @param string $type |
169 | 169 | */ |
170 | - public function setType(?string $type) |
|
170 | + public function setType(? string $type) |
|
171 | 171 | { |
172 | 172 | $this->type = $type; |
173 | 173 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | /** |
176 | 176 | * @return string |
177 | 177 | */ |
178 | - public function getDescription(): ?string |
|
178 | + public function getDescription(): ? string |
|
179 | 179 | { |
180 | 180 | return $this->description; |
181 | 181 | } |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | /** |
184 | 184 | * @param string $description |
185 | 185 | */ |
186 | - public function setDescription(?string $description) |
|
186 | + public function setDescription(? string $description) |
|
187 | 187 | { |
188 | 188 | $this->description = $description; |
189 | 189 | } |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | /** |
192 | 192 | * @return string |
193 | 193 | */ |
194 | - public function getAddress(): ?string |
|
194 | + public function getAddress(): ? string |
|
195 | 195 | { |
196 | 196 | return $this->address; |
197 | 197 | } |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | /** |
200 | 200 | * @param string $address |
201 | 201 | */ |
202 | - public function setAddress(?string $address) |
|
202 | + public function setAddress(? string $address) |
|
203 | 203 | { |
204 | 204 | $this->address = $address; |
205 | 205 | } |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | /** |
208 | 208 | * @return string |
209 | 209 | */ |
210 | - public function getContactName(): ?string |
|
210 | + public function getContactName(): ? string |
|
211 | 211 | { |
212 | 212 | return $this->contactName; |
213 | 213 | } |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | /** |
216 | 216 | * @param string $contactName |
217 | 217 | */ |
218 | - public function setContactName(?string $contactName) |
|
218 | + public function setContactName(? string $contactName) |
|
219 | 219 | { |
220 | 220 | $this->contactName = $contactName; |
221 | 221 | } |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | /** |
224 | 224 | * @return string |
225 | 225 | */ |
226 | - public function getEmail(): ?string |
|
226 | + public function getEmail(): ? string |
|
227 | 227 | { |
228 | 228 | return $this->email; |
229 | 229 | } |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | /** |
232 | 232 | * @param string $email |
233 | 233 | */ |
234 | - public function setEmail(?string $email) |
|
234 | + public function setEmail(? string $email) |
|
235 | 235 | { |
236 | 236 | $this->email = $email; |
237 | 237 | } |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | /** |
240 | 240 | * @return string |
241 | 241 | */ |
242 | - public function getPhone(): ?string |
|
242 | + public function getPhone(): ? string |
|
243 | 243 | { |
244 | 244 | return $this->phone; |
245 | 245 | } |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | /** |
248 | 248 | * @param string $phone |
249 | 249 | */ |
250 | - public function setPhone(?string $phone) |
|
250 | + public function setPhone(? string $phone) |
|
251 | 251 | { |
252 | 252 | $this->phone = $phone; |
253 | 253 | } |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | /** |
256 | 256 | * @return string |
257 | 257 | */ |
258 | - public function getFax(): ?string |
|
258 | + public function getFax(): ? string |
|
259 | 259 | { |
260 | 260 | return $this->fax; |
261 | 261 | } |
@@ -263,7 +263,7 @@ discard block |
||
263 | 263 | /** |
264 | 264 | * @param string $fax |
265 | 265 | */ |
266 | - public function setFax(?string $fax) |
|
266 | + public function setFax(? string $fax) |
|
267 | 267 | { |
268 | 268 | $this->fax = $fax; |
269 | 269 | } |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | /** |
288 | 288 | * @return string |
289 | 289 | */ |
290 | - public function getMerchantDomain(): ?string |
|
290 | + public function getMerchantDomain(): ? string |
|
291 | 291 | { |
292 | 292 | return $this->merchantDomain; |
293 | 293 | } |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | /** |
296 | 296 | * @param string $merchantDomain |
297 | 297 | */ |
298 | - public function setMerchantDomain(?string $merchantDomain) |
|
298 | + public function setMerchantDomain(? string $merchantDomain) |
|
299 | 299 | { |
300 | 300 | $this->merchantDomain = $merchantDomain; |
301 | 301 | } |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | /** |
304 | 304 | * @return string |
305 | 305 | */ |
306 | - public function getSubdomain(): ?string |
|
306 | + public function getSubdomain(): ? string |
|
307 | 307 | { |
308 | 308 | return $this->subdomain; |
309 | 309 | } |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | /** |
312 | 312 | * @param string $subdomain |
313 | 313 | */ |
314 | - public function setSubdomain(?string $subdomain) |
|
314 | + public function setSubdomain(? string $subdomain) |
|
315 | 315 | { |
316 | 316 | $this->subdomain = $subdomain; |
317 | 317 | } |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | /** |
336 | 336 | * @return Agent |
337 | 337 | */ |
338 | - public function getAgent(): ?Agent |
|
338 | + public function getAgent(): ? Agent |
|
339 | 339 | { |
340 | 340 | return $this->agent; |
341 | 341 | } |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | /** |
368 | 368 | * @return string |
369 | 369 | */ |
370 | - public function getUserIpAccess(): ?string |
|
370 | + public function getUserIpAccess(): ? string |
|
371 | 371 | { |
372 | 372 | return $this->userIpAccess; |
373 | 373 | } |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | /** |
376 | 376 | * @param string $userIpAccess |
377 | 377 | */ |
378 | - public function setUserIpAccess(?string $userIpAccess) |
|
378 | + public function setUserIpAccess(? string $userIpAccess) |
|
379 | 379 | { |
380 | 380 | $this->userIpAccess = $userIpAccess; |
381 | 381 | } |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | /** |
384 | 384 | * @return string |
385 | 385 | */ |
386 | - public function getVtIpAccess(): ?string |
|
386 | + public function getVtIpAccess(): ? string |
|
387 | 387 | { |
388 | 388 | return $this->vtIpAccess; |
389 | 389 | } |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | /** |
392 | 392 | * @param string $vtIpAccess |
393 | 393 | */ |
394 | - public function setVtIpAccess(?string $vtIpAccess) |
|
394 | + public function setVtIpAccess(? string $vtIpAccess) |
|
395 | 395 | { |
396 | 396 | $this->vtIpAccess = $vtIpAccess; |
397 | 397 | } |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | /** |
400 | 400 | * @return string |
401 | 401 | */ |
402 | - public function getSkype(): ?string |
|
402 | + public function getSkype(): ? string |
|
403 | 403 | { |
404 | 404 | return $this->skype; |
405 | 405 | } |
@@ -407,7 +407,7 @@ discard block |
||
407 | 407 | /** |
408 | 408 | * @param string $skype |
409 | 409 | */ |
410 | - public function setSkype(?string $skype) |
|
410 | + public function setSkype(? string $skype) |
|
411 | 411 | { |
412 | 412 | $this->skype = $skype; |
413 | 413 | } |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | /** |
416 | 416 | * @return Tariff |
417 | 417 | */ |
418 | - public function getTariff(): ?Tariff |
|
418 | + public function getTariff(): ? Tariff |
|
419 | 419 | { |
420 | 420 | return $this->tariff; |
421 | 421 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace AcquiroPay\Models\Entities; |
6 | 6 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | /** |
25 | 25 | * @return string |
26 | 26 | */ |
27 | - public function getDescription(): ?string |
|
27 | + public function getDescription(): ? string |
|
28 | 28 | { |
29 | 29 | return $this->description; |
30 | 30 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @param string $description |
34 | 34 | */ |
35 | - public function setDescription(?string $description) |
|
35 | + public function setDescription(? string $description) |
|
36 | 36 | { |
37 | 37 | $this->description = $description; |
38 | 38 | } |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | /** |
41 | 41 | * @return string |
42 | 42 | */ |
43 | - public function getPeriod(): ?string |
|
43 | + public function getPeriod(): ? string |
|
44 | 44 | { |
45 | 45 | return $this->period; |
46 | 46 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | /** |
49 | 49 | * @param string $period |
50 | 50 | */ |
51 | - public function setPeriod(?string $period) |
|
51 | + public function setPeriod(? string $period) |
|
52 | 52 | { |
53 | 53 | $this->period = $period; |
54 | 54 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | /** |
57 | 57 | * @return string |
58 | 58 | */ |
59 | - public function getStartPeriod(): ?string |
|
59 | + public function getStartPeriod(): ? string |
|
60 | 60 | { |
61 | 61 | return $this->startPeriod; |
62 | 62 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | /** |
65 | 65 | * @param string $startPeriod |
66 | 66 | */ |
67 | - public function setStartPeriod(?string $startPeriod) |
|
67 | + public function setStartPeriod(? string $startPeriod) |
|
68 | 68 | { |
69 | 69 | $this->startPeriod = $startPeriod; |
70 | 70 | } |