Completed
Push — master ( 5d560b...8c051a )
by
unknown
02:19
created
src/Models/Entities/Agent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Contracts/Entities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AcquiroPay\Contracts;
6 6
 
Please login to merge, or discard this patch.
src/Models/Entities/Entity.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     /**
20 20
      * @return int|null
21 21
      */
22
-    public function getId(): ?int
22
+    public function getId(): ? int
23 23
     {
24 24
         return $this->id;
25 25
     }
Please login to merge, or discard this patch.
src/Models/Pagination/Paginator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AcquiroPay\Models\Pagination;
6 6
 
Please login to merge, or discard this patch.
src/Services/Entities.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AcquiroPay\Services;
6 6
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * @param array $parameters
51 51
      * @return Country|null
52 52
      */
53
-    public function getCountry(int $id, array $parameters = []): ?Country
53
+    public function getCountry(int $id, array $parameters = []): ? Country
54 54
     {
55 55
         $response = $this->makeRequest('GET', 'countries/'.$id, $parameters);
56 56
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * @param array $parameters
78 78
      * @return Currency|null
79 79
      */
80
-    public function getCurrency(int $id, array $parameters = []): ?Currency
80
+    public function getCurrency(int $id, array $parameters = []): ? Currency
81 81
     {
82 82
         $response = $this->makeRequest('GET', 'currencies/'.$id, $parameters);
83 83
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * @param array $parameters
118 118
      * @return Merchant|null
119 119
      */
120
-    public function getMerchant(int $id, array $parameters = []): ?Merchant
120
+    public function getMerchant(int $id, array $parameters = []): ? Merchant
121 121
     {
122 122
         $response = $this->makeRequest('GET', 'merchants/'.$id, $parameters);
123 123
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      *
149 149
      * @return Site|null
150 150
      */
151
-    public function getSite(Merchant $merchant, int $id, array $parameters = []): ?Site
151
+    public function getSite(Merchant $merchant, int $id, array $parameters = []): ? Site
152 152
     {
153 153
         $response = $this->makeRequest('GET', 'merchants/'.$merchant->getId().'/sites/'.$id, $parameters);
154 154
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
      *
186 186
      * @return Product|null
187 187
      */
188
-    public function getProduct(Merchant $merchant, Site $site, int $id, array $parameters = []): ?Product
188
+    public function getProduct(Merchant $merchant, Site $site, int $id, array $parameters = []): ? Product
189 189
     {
190 190
         $response = $this->makeRequest(
191 191
             'GET',
Please login to merge, or discard this patch.
src/Models/Pagination/Meta.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace AcquiroPay\Models\Pagination;
6 6
 
Please login to merge, or discard this patch.
src/Models/Entities/Merchant.php 1 patch
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Models/Entities/Tariff.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Models/Entities/Site.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * @return int
81 81
      */
82
-    public function getShowLanguage(): ?int
82
+    public function getShowLanguage(): ? int
83 83
     {
84 84
         return $this->showLanguage;
85 85
     }
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     /**
88 88
      * @param int $showLanguage
89 89
      */
90
-    public function setShowLanguage(?int $showLanguage)
90
+    public function setShowLanguage(? int $showLanguage)
91 91
     {
92 92
         $this->showLanguage = $showLanguage;
93 93
     }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     /**
96 96
      * @return string
97 97
      */
98
-    public function getSiteLanguage(): ?string
98
+    public function getSiteLanguage(): ? string
99 99
     {
100 100
         return $this->siteLanguage;
101 101
     }
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     /**
104 104
      * @param string $siteLanguage
105 105
      */
106
-    public function setSiteLanguage(?string $siteLanguage)
106
+    public function setSiteLanguage(? string $siteLanguage)
107 107
     {
108 108
         $this->siteLanguage = $siteLanguage;
109 109
     }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * @return int|null
113 113
      */
114
-    public function getMerchantId(): ?int
114
+    public function getMerchantId(): ? int
115 115
     {
116 116
         return $this->merchantId;
117 117
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     /**
120 120
      * @param int|null $merchantId
121 121
      */
122
-    public function setMerchantId(?int $merchantId)
122
+    public function setMerchantId(? int $merchantId)
123 123
     {
124 124
         $this->merchantId = $merchantId;
125 125
     }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     /**
128 128
      * @return string
129 129
      */
130
-    public function getStatus(): ?string
130
+    public function getStatus(): ? string
131 131
     {
132 132
         return $this->status;
133 133
     }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     /**
136 136
      * @param string $status
137 137
      */
138
-    public function setStatus(?string $status)
138
+    public function setStatus(? string $status)
139 139
     {
140 140
         $this->status = $status;
141 141
     }
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * @return string
145 145
      */
146
-    public function getType(): ?string
146
+    public function getType(): ? string
147 147
     {
148 148
         return $this->type;
149 149
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     /**
152 152
      * @param string $type
153 153
      */
154
-    public function setType(?string $type)
154
+    public function setType(? string $type)
155 155
     {
156 156
         $this->type = $type;
157 157
     }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     /**
160 160
      * @return string
161 161
      */
162
-    public function getUrl(): ?string
162
+    public function getUrl(): ? string
163 163
     {
164 164
         return $this->url;
165 165
     }
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
     /**
168 168
      * @param string $url
169 169
      */
170
-    public function setUrl(?string $url)
170
+    public function setUrl(? string $url)
171 171
     {
172 172
         $this->url = $url;
173 173
     }
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     /**
176 176
      * @return string
177 177
      */
178
-    public function getShortName(): ?string
178
+    public function getShortName(): ? string
179 179
     {
180 180
         return $this->shortName;
181 181
     }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     /**
184 184
      * @param string $shortName
185 185
      */
186
-    public function setShortName(?string $shortName)
186
+    public function setShortName(? string $shortName)
187 187
     {
188 188
         $this->shortName = $shortName;
189 189
     }
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     /**
192 192
      * @return int
193 193
      */
194
-    public function getDesignId(): ?int
194
+    public function getDesignId(): ? int
195 195
     {
196 196
         return $this->designId;
197 197
     }
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     /**
200 200
      * @param int $designId
201 201
      */
202
-    public function setDesignId(?int $designId)
202
+    public function setDesignId(? int $designId)
203 203
     {
204 204
         $this->designId = $designId;
205 205
     }
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     /**
208 208
      * @return int
209 209
      */
210
-    public function getAntifraudId(): ?int
210
+    public function getAntifraudId(): ? int
211 211
     {
212 212
         return $this->antifraudId;
213 213
     }
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
     /**
216 216
      * @param int $antifraudId
217 217
      */
218
-    public function setAntifraudId(?int $antifraudId)
218
+    public function setAntifraudId(? int $antifraudId)
219 219
     {
220 220
         $this->antifraudId = $antifraudId;
221 221
     }
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     /**
224 224
      * @return string
225 225
      */
226
-    public function getOfferCountry(): ?string
226
+    public function getOfferCountry(): ? string
227 227
     {
228 228
         return $this->offerCountry;
229 229
     }
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
     /**
232 232
      * @param string $offerCountry
233 233
      */
234
-    public function setOfferCountry(?string $offerCountry)
234
+    public function setOfferCountry(? string $offerCountry)
235 235
     {
236 236
         $this->offerCountry = $offerCountry;
237 237
     }
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     /**
240 240
      * @return int
241 241
      */
242
-    public function getTariffId(): ?int
242
+    public function getTariffId(): ? int
243 243
     {
244 244
         return $this->tariffId;
245 245
     }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     /**
248 248
      * @param int $tariffId
249 249
      */
250
-    public function setTariffId(?int $tariffId)
250
+    public function setTariffId(? int $tariffId)
251 251
     {
252 252
         $this->tariffId = $tariffId;
253 253
     }
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
     /**
256 256
      * @return string
257 257
      */
258
-    public function getXFrameOption(): ?string
258
+    public function getXFrameOption(): ? string
259 259
     {
260 260
         return $this->xFrameOption;
261 261
     }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
     /**
264 264
      * @param string $xFrameOption
265 265
      */
266
-    public function setXFrameOption(?string $xFrameOption)
266
+    public function setXFrameOption(? string $xFrameOption)
267 267
     {
268 268
         $this->xFrameOption = $xFrameOption;
269 269
     }
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
     /**
272 272
      * @return string
273 273
      */
274
-    public function getUrlAlias(): ?string
274
+    public function getUrlAlias(): ? string
275 275
     {
276 276
         return $this->urlAlias;
277 277
     }
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     /**
280 280
      * @param string $urlAlias
281 281
      */
282
-    public function setUrlAlias(?string $urlAlias)
282
+    public function setUrlAlias(? string $urlAlias)
283 283
     {
284 284
         $this->urlAlias = $urlAlias;
285 285
     }
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
     /**
288 288
      * @return Tariff
289 289
      */
290
-    public function getTariff(): ?Tariff
290
+    public function getTariff(): ? Tariff
291 291
     {
292 292
         return $this->tariff;
293 293
     }
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
     /**
296 296
      * @param Tariff $tariff
297 297
      */
298
-    public function setTariff(?Tariff $tariff)
298
+    public function setTariff(? Tariff $tariff)
299 299
     {
300 300
         $this->tariff = $tariff;
301 301
     }
Please login to merge, or discard this patch.