@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | static::KEY_GEBURTS_DATUM => '', |
| 233 | 233 | ], |
| 234 | 234 | static::KEY_RECHNUNGS_ADRESSE => [ |
| 235 | - static::KEY_STRASSE_HAUS_NR => ($billingAddressTransfer ? (($billingAddressTransfer->getAddress1() ?? '') . ($billingAddressTransfer->getAddress2() ?? '')) : null), |
|
| 235 | + static::KEY_STRASSE_HAUS_NR => ($billingAddressTransfer ? (($billingAddressTransfer->getAddress1() ?? '').($billingAddressTransfer->getAddress2() ?? '')) : null), |
|
| 236 | 236 | static::KEY_PLZ => $billingAddressTransfer ? $billingAddressTransfer->getZipCode() : null, |
| 237 | 237 | static::KEY_ORT => $billingAddressTransfer ? $billingAddressTransfer->getCity() : null, |
| 238 | 238 | static::KEY_LAND => $billingAddressTransfer ? $billingAddressTransfer->getIso2Code() : null, |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | static::KEY_LIEFER_ADRESSE => [ |
| 241 | 241 | static::KEY_VORNAME => $shippingAddressTransfer ? $shippingAddressTransfer->getFirstName() : null, |
| 242 | 242 | static::KEY_NACHNAME => $shippingAddressTransfer ? $shippingAddressTransfer->getLastName() : null, |
| 243 | - static::KEY_STRASSE_HAUS_NR => ($shippingAddressTransfer ? (($shippingAddressTransfer->getAddress1() ?? '') . ($shippingAddressTransfer->getAddress2() ?? '')) : null), |
|
| 243 | + static::KEY_STRASSE_HAUS_NR => ($shippingAddressTransfer ? (($shippingAddressTransfer->getAddress1() ?? '').($shippingAddressTransfer->getAddress2() ?? '')) : null), |
|
| 244 | 244 | static::KEY_PLZ => $shippingAddressTransfer ? $shippingAddressTransfer->getZipCode() : null, |
| 245 | 245 | static::KEY_ORT => $shippingAddressTransfer ? $shippingAddressTransfer->getCity() : null, |
| 246 | 246 | static::KEY_LAND => $shippingAddressTransfer ? $shippingAddressTransfer->getIso2Code() : null, |
@@ -139,7 +139,7 @@ |
||
| 139 | 139 | $responseTransfer->setBody($this->utilEncodingService->decodeJson($response->getBody(), true)); |
| 140 | 140 | } catch (RequestException $requestException) { |
| 141 | 141 | $errorTransfer = (new EasycreditResponseErrorTransfer()) |
| 142 | - ->setErrorCode((int)$requestException->getCode()) |
|
| 142 | + ->setErrorCode((int) $requestException->getCode()) |
|
| 143 | 143 | ->setErrorMessage($requestException->getMessage()); |
| 144 | 144 | |
| 145 | 145 | $responseTransfer->setError($errorTransfer); |