Passed
Push — master ( 5f22c6...c5364e )
by Bruce Pinheiro de
02:43
created
src/Customer/PaymentInstrument/PaymentInstrumentInterface.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     /**
14 14
      * @return null|string
15 15
      */
16
-    function getToken():? string;
16
+    function getToken(): ? string;
17 17
 
18 18
     /**
19 19
      * @param null|string $token
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * @return null|string
37 37
      */
38
-    function getType():? string;
38
+    function getType(): ? string;
39 39
 
40 40
     /**
41 41
      * @param null|string $type
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     /**
47 47
      * @return array|null
48 48
      */
49
-    function getCard():? array;
49
+    function getCard(): ? array;
50 50
 
51 51
     /**
52 52
      * @param array|null $data
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * @return null|string
59 59
      */
60
-    function getLast4Digits():? string;
60
+    function getLast4Digits(): ? string;
61 61
 
62 62
     /**
63 63
      * @param null|string $digits
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * @return null|string
70 70
      */
71
-    function getCardType():? string;
71
+    function getCardType(): ? string;
72 72
 
73 73
     /**
74 74
      * @param null|string $schema
Please login to merge, or discard this patch.
src/Customer/CustomerClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
     /**
180 180
      * @return AccessToken
181 181
      */
182
-    function getToken():? AccessToken
182
+    function getToken(): ? AccessToken
183 183
     {
184 184
         return $this->token;
185 185
 	}
Please login to merge, or discard this patch.
src/Customer/CustomerClientInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      * @param CustomerInterface $customer
13 13
      * @return CustomerInterface
14 14
      */
15
-    function create(CustomerInterface $customer):? CustomerInterface;
15
+    function create(CustomerInterface $customer): ? CustomerInterface;
16 16
 
17 17
     /**
18 18
      * @param CustomerInterface $customer
Please login to merge, or discard this patch.
src/Checkout/CheckoutClientInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      * @return CheckoutInterface
14 14
      * @see http://docs.sumup.com/rest-api/checkouts-api/#checkouts-create-checkout-post
15 15
      */
16
-    public function create(CheckoutInterface $checkout):? CheckoutInterface;
16
+    public function create(CheckoutInterface $checkout): ? CheckoutInterface;
17 17
 
18 18
     /**
19 19
      * Complete a checkout
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      * @return CheckoutInterface
23 23
      * @see http://docs.sumup.com/rest-api/checkouts-api/#checkouts-complete-checkout-put
24 24
      */
25
-    public function complete(CheckoutInterface $checkout):? CheckoutInterface;
25
+    public function complete(CheckoutInterface $checkout): ? CheckoutInterface;
26 26
 
27 27
     /**
28 28
      * @param CheckoutInterface $checkout
Please login to merge, or discard this patch.
src/Checkout/CheckoutInterface.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
 	/**
43 43
 	 * @return float
44 44
 	 */
45
-	function getAmount():? float;
45
+	function getAmount(): ? float;
46 46
 
47 47
 	/**
48 48
 	 * @return float|null
49 49
 	 */
50
-    function getFeeAmount():? float;
50
+    function getFeeAmount(): ? float;
51 51
 
52 52
 	/**
53 53
 	 * @param float $amount
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 	/**
147 147
 	 * @return string
148 148
 	 */
149
-	function getValidUntil():? string;
149
+	function getValidUntil(): ? string;
150 150
 
151 151
 	/**
152 152
 	 * @param string $timestamp
@@ -212,9 +212,9 @@  discard block
 block discarded – undo
212 212
 	/**
213 213
 	 * @return null|string
214 214
 	 */
215
-	function getType():? string;
215
+	function getType(): ? string;
216 216
 
217
-	function setInstallments(?string $installments):? self;
218
-	function getInstallments():? string;
217
+	function setInstallments(?string $installments): ? self;
218
+	function getInstallments(): ? string;
219 219
 
220 220
 }
Please login to merge, or discard this patch.
src/Checkout/CheckoutClient.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 	 * @throws BadResponseException
39 39
 	 * @throws ConnectException
40 40
 	 */
41
-    function create(CheckoutInterface $checkout, AccessToken $accessToken = null):? CheckoutInterface
41
+    function create(CheckoutInterface $checkout, AccessToken $accessToken = null): ? CheckoutInterface
42 42
 	{
43 43
         return $this->request('post', $checkout) ? $checkout : null;
44 44
 	}
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 * @throws BadResponseException
49 49
 	 * @throws ConnectException
50 50
 	 */
51
-    function complete(CheckoutInterface $checkout, AccessToken $accessToken = null):? CheckoutInterface
51
+    function complete(CheckoutInterface $checkout, AccessToken $accessToken = null): ? CheckoutInterface
52 52
 	{
53 53
         return $this->request('put', $checkout) ? $checkout : null;
54 54
 	}
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      * @param string|null $endpoint
60 60
 	 * @return bool|null
61 61
 	 */
62
-    function request(string $action, $checkout, string $endpoint = null):? bool
62
+    function request(string $action, $checkout, string $endpoint = null): ? bool
63 63
 	{
64 64
         if (!$checkout->isValid()) {
65 65
             throw new InvalidCheckoutException($checkout);
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     /**
202 202
      * @return AccessToken
203 203
      */
204
-    function getToken():? AccessToken
204
+    function getToken(): ? AccessToken
205 205
     {
206 206
         return $this->currentToken;
207 207
     }
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
     static function getCompleteUrl(CheckoutInterface $checkout): string
214 214
     {
215 215
         if ($checkout->getId()) {
216
-            return SumUp::getEntrypoint().$checkout->getId();
216
+            return SumUp::getEntrypoint() . $checkout->getId();
217 217
         }
218 218
 
219 219
         return '';
Please login to merge, or discard this patch.
src/Traits/PropertyHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     function fillProperty(string $property, $value): void
30 30
 	{
31 31
 		$property = lcfirst(str_replace('_', '', ucwords($property, '_')));
32
-		if(property_exists(__CLASS__, $property))
32
+		if (property_exists(__CLASS__, $property))
33 33
 		{
34 34
 			$method = sprintf('set%s', ucfirst($property));
35 35
 			$this->{$method}($value);
@@ -44,11 +44,11 @@  discard block
 block discarded – undo
44 44
 		$reflection = new \ReflectionClass(__CLASS__);
45 45
 		$properties = $reflection->getProperties(\ReflectionProperty::IS_PROTECTED);
46 46
 		$data = [];
47
-		foreach($properties as $property){
47
+		foreach ($properties as $property) {
48 48
 			$prop_name = $property->getName();
49 49
 			$method = sprintf('get%s', ucfirst($prop_name));
50 50
 			$form_name = strtolower(preg_replace('/[A-Z]/', '_$0', $prop_name));
51
-			if($reflection->hasMethod($method)){
51
+			if ($reflection->hasMethod($method)) {
52 52
 				$data[$form_name] = $this->{$method}();
53 53
 			}
54 54
 		}
Please login to merge, or discard this patch.
src/Traits/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * @throws BadResponseException
30 30
      * @throws ConnectException
31 31
      */
32
-    function request(string $action, $object = null, string $endpoint = null):? bool
32
+    function request(string $action, $object = null, string $endpoint = null): ? bool
33 33
     {
34 34
         /** @var SumUpClientInterface $this */
35 35
 
Please login to merge, or discard this patch.
src/Traits/ClientInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,5 +17,5 @@
 block discarded – undo
17 17
      * @param string|null $endpoint
18 18
      * @return bool|null
19 19
      */
20
-    function request(string $action, $object, string $endpoint = null):? bool;
20
+    function request(string $action, $object, string $endpoint = null): ? bool;
21 21
 }
Please login to merge, or discard this patch.