@@ -198,7 +198,7 @@ |
||
| 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 | } |
@@ -221,7 +221,7 @@ |
||
| 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 | } |