Completed
Pull Request — master (#67)
by Mario
03:27
created
Helper/Api.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
         $blRequestTypeIsAuth = ($this->getConfigParam('request_type') == PayoneConfig::REQUEST_TYPE_AUTHORIZATION);
199 199
         $blRequestIsNoAuthRequest = ($caller instanceof Authorization === false);
200 200
         // check if invoice transmission is enabled in the config
201
-        $blInvoiceEnabled = (bool) $this->getConfigParam('transmit_enabled', 'invoicing');
201
+        $blInvoiceEnabled = (bool)$this->getConfigParam('transmit_enabled', 'invoicing');
202 202
         $blSetupNeedsProductInfo = (($blRequestTypeIsAuth || $blRequestIsNoAuthRequest) && $blInvoiceEnabled);
203 203
         return ($oPayment->needsProductInfo() || $blSetupNeedsProductInfo);
204 204
     }
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
@@ -221,7 +221,7 @@
 block discarded – undo
221 221
     {
222 222
         if (fmod(floatval($dItemAmount), 1.0) > 0) { // input does not represent an integer
223 223
             $sErrorMessage = "Unable to use floating point values for item amounts! Parameter was: ";
224
-            throw new \InvalidArgumentException($sErrorMessage . strval($dItemAmount), 1);
224
+            throw new \InvalidArgumentException($sErrorMessage.strval($dItemAmount), 1);
225 225
         } else { // return the integer value
226 226
             return intval($dItemAmount);
227 227
         }
Please login to merge, or discard this patch.