@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | } |
| 212 | 212 | $xmlNode = $this->sepaDoc->createElement($strNode); |
| 213 | 213 | if (!empty($value)) {
|
| 214 | - $xmlNode->nodeValue = (string) $value; |
|
| 214 | + $xmlNode->nodeValue = (string)$value; |
|
| 215 | 215 | } |
| 216 | 216 | $xmlParent->appendChild($xmlNode); |
| 217 | 217 | |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | } else if (is_numeric($date)) {
|
| 375 | 375 | $this->uxtsCollExecDate = intval($date); |
| 376 | 376 | } else {
|
| 377 | - $uxts = strtotime((string) $date); |
|
| 377 | + $uxts = strtotime((string)$date); |
|
| 378 | 378 | if ($uxts !== false) {
|
| 379 | 379 | $this->uxtsCollExecDate = $uxts; |
| 380 | 380 | } |
@@ -241,7 +241,7 @@ |
||
| 241 | 241 | {
|
| 242 | 242 | $xmlNode = $this->createElement($strNode); |
| 243 | 243 | if (!empty($value)) {
|
| 244 | - $xmlNode->nodeValue = (string) $value; |
|
| 244 | + $xmlNode->nodeValue = (string)$value; |
|
| 245 | 245 | } |
| 246 | 246 | $xmlParent->appendChild($xmlNode); |
| 247 | 247 | |
@@ -194,7 +194,7 @@ |
||
| 194 | 194 | } else if (is_numeric($DateOfSignature)) {
|
| 195 | 195 | $this->strDateOfSignature = date('Y-m-d', intval($DateOfSignature));
|
| 196 | 196 | } else {
|
| 197 | - $this->strDateOfSignature = (string) $DateOfSignature; |
|
| 197 | + $this->strDateOfSignature = (string)$DateOfSignature; |
|
| 198 | 198 | } |
| 199 | 199 | } |
| 200 | 200 | |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | $strClass = self::$aValidation[$strCntry]; |
| 389 | 389 | $oValidate = new $strClass($strCntry); |
| 390 | 390 | |
| 391 | - return $oValidate->validateIBAN($strIBAN); /** @phpstan-ignore-line */ |
|
| 391 | + return $oValidate->validateIBAN($strIBAN); /** @phpstan-ignore-line */ |
|
| 392 | 392 | } |
| 393 | 393 | |
| 394 | 394 | /** |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | $strClass = self::$aValidation[$strCntry]; |
| 425 | 425 | $oValidate = new $strClass($strCntry); |
| 426 | 426 | |
| 427 | - return $oValidate->validateBIC($strBIC); /** @phpstan-ignore-line */ |
|
| 427 | + return $oValidate->validateBIC($strBIC); /** @phpstan-ignore-line */ |
|
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | /** |
@@ -455,7 +455,7 @@ discard block |
||
| 455 | 455 | $strClass = self::$aValidation[$strCntry]; |
| 456 | 456 | $oValidate = new $strClass($strCntry); |
| 457 | 457 | |
| 458 | - return $oValidate->validateCI($strCI); /** @phpstan-ignore-line */ |
|
| 458 | + return $oValidate->validateCI($strCI); /** @phpstan-ignore-line */ |
|
| 459 | 459 | } |
| 460 | 460 | |
| 461 | 461 | /** |