Passed
Pull Request — main (#5)
by Leith
03:40
created
src/Message/BaseRequest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     protected function getAuthorization()
35 35
     {
36
-        return base64_encode($this->getApiUsername() . ':' . $this->getApiKey());
36
+        return base64_encode($this->getApiUsername().':'.$this->getApiKey());
37 37
     }
38 38
 
39 39
     public function setCreateToken($value)
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
             'oxipay', 'visacheckout', 'wechat'
92 92
         ];
93 93
 
94
-        foreach ( $list as $method ) {
95
-            if ( !in_array($method, $options) ) {
94
+        foreach ($list as $method) {
95
+            if (!in_array($method, $options)) {
96 96
                 throw new InvalidRequestException("Unknown payment method: {$method}");
97 97
             }
98 98
         }
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
             'resubmission', 'reauthorisation', 'delayedcharges', 'noshow'
161 161
         ];
162 162
 
163
-        if ( ! in_array($value, $options) ) {
163
+        if (!in_array($value, $options)) {
164 164
             throw new InvalidRequestException("Invalid option '{$value}' set for StoredCardIndicator.");
165 165
         }
166 166
 
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
             'twomonthly', 'threemonthly', 'fourmonthly', 'sixmonthly', 'annually'
193 193
         ];
194 194
 
195
-        if ( ! in_array($value, $options) ) {
195
+        if (!in_array($value, $options)) {
196 196
             throw new InvalidRequestException("Invalid option '{$value}' set for RecurringFrequency.");
197 197
         }
198 198
 
@@ -221,6 +221,6 @@  discard block
 block discarded – undo
221 221
     protected function getEndpoint($path = '')
222 222
     {
223 223
         $base = $this->getTestMode() ? self::ENDPOINT_TEST : self::ENDPOINT_LIVE;
224
-        return $base . '/' . $path;
224
+        return $base.'/'.$path;
225 225
     }
226 226
 }
Please login to merge, or discard this patch.
src/Message/PurchaseRequest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -25,57 +25,57 @@  discard block
 block discarded – undo
25 25
         $data['currency'] = $this->getCurrency();
26 26
         $data['callbackUrls'] = [];
27 27
 
28
-        if ( (bool) $this->getCreateToken() ) {
28
+        if ((bool) $this->getCreateToken()) {
29 29
             $data['storeCard'] = true;
30 30
         }
31 31
 
32
-        if ( $this->getStoredCardIndicator() ) {
32
+        if ($this->getStoredCardIndicator()) {
33 33
             $data['storedCardIndicator'] = $this->getStoredCardIndicator();
34 34
         }
35 35
 
36
-        if ( $this->getRecurringExpiry() ) {
36
+        if ($this->getRecurringExpiry()) {
37 37
             $data['recurringExpiry'] = $this->getRecurringExpiry();
38 38
         }
39 39
 
40
-        if ( $this->getRecurringFrequency() ) {
40
+        if ($this->getRecurringFrequency()) {
41 41
             $data['recurringFrequency'] = $this->getRecurringFrequency();
42 42
         }
43 43
 
44
-        if ( $this->getToken() || $this->getCardReference() ) {
44
+        if ($this->getToken() || $this->getCardReference()) {
45 45
             $data['cardId'] = $this->getToken() ?? $this->getCardReference();
46 46
         }
47 47
 
48
-        if ( is_array($this->getPaymentMethods()) ) {
48
+        if (is_array($this->getPaymentMethods())) {
49 49
             $data['methods'] = $this->getPaymentMethods();
50 50
         }
51 51
 
52
-        if ( is_array($this->getCardTypes()) ) {
52
+        if (is_array($this->getCardTypes())) {
53 53
             $data['cardTypes'] = $this->getCardTypes();
54 54
         }
55 55
 
56
-        if ( is_array($this->getMetadata()) ) {
56
+        if (is_array($this->getMetadata())) {
57 57
             $data['metaData'] = $this->getMetadata();
58 58
         }
59 59
 
60 60
         $merchantReference = $this->getMerchantReference() ?? $this->getDescription();
61 61
 
62
-        if ( $merchantReference ) {
62
+        if ($merchantReference) {
63 63
             $data['merchantReference'] = $merchantReference;
64 64
         }
65 65
 
66
-        if ( $this->getReturnUrl() ) {
66
+        if ($this->getReturnUrl()) {
67 67
             $data['callbackUrls']['approved'] = $this->getReturnUrl();
68 68
         }
69 69
 
70
-        if ( $this->getDeclineUrl() ) {
70
+        if ($this->getDeclineUrl()) {
71 71
             $data['callbackUrls']['declined'] = $this->getDeclineUrl();
72 72
         }
73 73
 
74
-        if ( $this->getCancelUrl() ) {
74
+        if ($this->getCancelUrl()) {
75 75
             $data['callbackUrls']['cancelled'] = $this->getCancelUrl();
76 76
         }
77 77
 
78
-        if ( $this->getNotifyUrl() ) {
78
+        if ($this->getNotifyUrl()) {
79 79
             $data['notificationUrl'] = $this->getNotifyUrl();
80 80
         }
81 81
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $headers = [
88 88
             'Accept'        => 'application/json',
89 89
             'Content-Type'  => 'application/json',
90
-            'Authorization' => 'Basic ' . $this->getAuthorization(),
90
+            'Authorization' => 'Basic '.$this->getAuthorization(),
91 91
         ];
92 92
 
93 93
         $httpResponse = $this->httpClient->request('POST', $this->getEndpoint('sessions'), $headers, json_encode($data));
Please login to merge, or discard this patch.