Test Setup Failed
Push — master ( 4c62c0...259020 )
by Bruce Pinheiro de
02:12
created
src/Customer/Address.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 	/**
223 223
 	 * @return mixed
224 224
 	 */
225
-	public function getCountryEnName():? string
225
+	public function getCountryEnName(): ? string
226 226
 	{
227 227
 		return $this->countryEnName;
228 228
 	}
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 	/**
242 242
 	 * @return mixed
243 243
 	 */
244
-	public function getCountryNativeName():? string
244
+	public function getCountryNativeName(): ? string
245 245
 	{
246 246
 		return $this->countryNativeName;
247 247
 	}
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 	/**
261 261
 	 * @return number|null
262 262
 	 */
263
-	public function getRegionId():? number
263
+	public function getRegionId(): ? number
264 264
 	{
265 265
 		return $this->regionId;
266 266
 	}
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 	/**
280 280
 	 * @return string|null
281 281
 	 */
282
-	public function getRegionName():? string
282
+	public function getRegionName(): ? string
283 283
 	{
284 284
 		return $this->regionName;
285 285
 	}
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
 	/**
299 299
 	 * @return string|null
300 300
 	 */
301
-	public function getPostCode():? string
301
+	public function getPostCode(): ? string
302 302
 	{
303 303
 		return $this->postCode;
304 304
 	}
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
 	/**
318 318
 	 * @return string|null
319 319
 	 */
320
-	public function getLandline():? string
320
+	public function getLandline(): ? string
321 321
 	{
322 322
 		return $this->landline;
323 323
 	}
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
 	/**
337 337
 	 * @return string|null
338 338
 	 */
339
-	public function getAddressLine1():? string
339
+	public function getAddressLine1(): ? string
340 340
 	{
341 341
 		return $this->addressLine1;
342 342
 	}
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
 	/**
356 356
 	 * @return string|null
357 357
 	 */
358
-	public function getAddressLine2():? string
358
+	public function getAddressLine2(): ? string
359 359
 	{
360 360
 		return $this->addressLine2;
361 361
 	}
Please login to merge, or discard this patch.
src/Customer/CustomerClientInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      * @param AccessToken $accessToken
15 15
      * @return CustomerInterface
16 16
      */
17
-    function create(CustomerInterface $customer, AccessToken $accessToken):? CustomerInterface;
17
+    function create(CustomerInterface $customer, AccessToken $accessToken): ? CustomerInterface;
18 18
 
19 19
     /**
20 20
      * Create a customer card and fill the $card Object with response.
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      * @param AccessToken $accessToken
25 25
      * @return CardInterface
26 26
      */
27
-    function createCard(CustomerInterface $customer, CardInterface $card, AccessToken $accessToken):? CardInterface;
27
+    function createCard(CustomerInterface $customer, CardInterface $card, AccessToken $accessToken): ? CardInterface;
28 28
 
29 29
     /**
30 30
      * Delete a customer card.
Please login to merge, or discard this patch.