Passed
Push — master ( 61fb22...572cd3 )
by Stefan
08:06
created
SKien/Sepa/SepaPmtInf.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
SKien/Sepa/SepaDoc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
SKien/Sepa/SepaTxInf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
SKien/Sepa/Sepa.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.