Completed
Push — master ( 341936...178071 )
by Florian
03:31
created
Service/V1/InstallmentPlan.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
     {
136 136
         $sErrorMessage = false;
137 137
         if (isset($aResponsePreCheck['status']) && $aResponsePreCheck['status'] == 'ERROR') {
138
-            $sErrorMessage = __($aResponsePreCheck['errorcode'] . ' - ' . $aResponsePreCheck['customermessage']);
138
+            $sErrorMessage = __($aResponsePreCheck['errorcode'].' - '.$aResponsePreCheck['customermessage']);
139 139
         } elseif (isset($aResponseCalculation['status']) && $aResponseCalculation['status'] == 'ERROR') {
140
-            $sErrorMessage = __($aResponseCalculation['errorcode'] . ' - ' . $aResponseCalculation['customermessage']);
140
+            $sErrorMessage = __($aResponseCalculation['errorcode'].' - '.$aResponseCalculation['customermessage']);
141 141
         } elseif (!$aResponsePreCheck || (isset($aResponsePreCheck['status']) && $aResponsePreCheck['status'] == 'OK' && !$aResponseCalculation)) {
142 142
             $sErrorMessage = __('An unknown error occurred');
143 143
         }
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
     public function getPayDataArray($aResponse)
191 191
     {
192 192
         $aPayData = array();
193
-        foreach($aResponse as $sKey => $sValue) {
193
+        foreach ($aResponse as $sKey => $sValue) {
194 194
             $sCorrectedKey = str_ireplace('add_paydata[', '', $sKey);
195 195
             $sCorrectedKey = rtrim($sCorrectedKey, ']');
196 196
             $sCorrectedKey = strtolower($sCorrectedKey);
@@ -215,18 +215,18 @@  discard block
 block discarded – undo
215 215
         $aPayData = $this->getPayDataArray($aResponse);
216 216
         foreach ($aPayData as $sKey => $sValue) {
217 217
             $aSplit = explode('_', $sKey);
218
-            for($i = count($aSplit); $i > 0; $i--) {
219
-                if($i == count($aSplit)) {
220
-                    $aTmp = array($aSplit[$i-1] => $sValue);
218
+            for ($i = count($aSplit); $i > 0; $i--) {
219
+                if ($i == count($aSplit)) {
220
+                    $aTmp = array($aSplit[$i - 1] => $sValue);
221 221
                 } else {
222
-                    $aTmp = array($aSplit[$i-1] => $aTmp);
222
+                    $aTmp = array($aSplit[$i - 1] => $aTmp);
223 223
                 }
224 224
             }
225 225
 
226 226
             $aInstallmentData = array_replace_recursive($aInstallmentData, $aTmp);
227 227
         }
228 228
 
229
-        if(isset($aInstallmentData['paymentdetails']) && count($aInstallmentData['paymentdetails']) > 0) {
229
+        if (isset($aInstallmentData['paymentdetails']) && count($aInstallmentData['paymentdetails']) > 0) {
230 230
             return $aInstallmentData['paymentdetails'];
231 231
         }
232 232
 
Please login to merge, or discard this patch.
Model/Api/Invoice.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
     {
235 235
         if (fmod(floatval($dItemAmount), 1.0) > 0) { // input does not represent an integer
236 236
             $sErrorMessage = "Unable to use floating point values for item amounts! Parameter was: ";
237
-            throw new \InvalidArgumentException($sErrorMessage . strval($dItemAmount), 1);
237
+            throw new \InvalidArgumentException($sErrorMessage.strval($dItemAmount), 1);
238 238
         } else { // return the integer value
239 239
             return intval($dItemAmount);
240 240
         }
Please login to merge, or discard this patch.