Passed
Push — main ( d54aa7...985c98 )
by Daniel
02:04
created
source/TraitLines.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
                     ];
126 126
                     break;
127 127
                 case 'SellersItemIdentification':
128
-                    $arrayOutput[$strName]['ID']                     = $value->children('cbc', true)->ID->__toString();
128
+                    $arrayOutput[$strName]['ID'] = $value->children('cbc', true)->ID->__toString();
129 129
                     break;
130 130
             }
131 131
         }
Please login to merge, or discard this patch.
source/ElectronicInvoiceRead.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
             'DocumentNameSpaces' => $arrayDocument['DocumentNameSpaces'],
60 60
             'DocumentTagName'    => $arrayDocument['DocumentTagName'],
61 61
         ]);
62
-        $arrayDocument['Lines']  = $this->getDocumentLines($objFile, $arrayDocument['DocumentTagName']);
62
+        $arrayDocument['Lines'] = $this->getDocumentLines($objFile, $arrayDocument['DocumentTagName']);
63 63
         return $arrayDocument;
64 64
     }
65 65
 }
Please login to merge, or discard this patch.
source/TraitHeader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
                         ->CreditNoteTypeCode->__toString();
93 93
                 break;
94 94
             case 'Invoice':
95
-                $arrayOutput['InvoiceTypeCode']    = (integer) $objCommonBasicComponents
95
+                $arrayOutput['InvoiceTypeCode'] = (integer) $objCommonBasicComponents
96 96
                         ->InvoiceTypeCode->__toString();
97 97
                 break;
98 98
         }
Please login to merge, or discard this patch.
source/ElectronicInvoiceComments.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         return $strToReturn;
86 86
     }
87 87
 
88
-    private function getOneOrMultipleTags(string|array $inElement, array $arrayIn): array
88
+    private function getOneOrMultipleTags(string | array $inElement, array $arrayIn): array
89 89
     {
90 90
         $arrayToReturn = [];
91 91
         if (is_array($inElement)) {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             'BT'    => 'Field',
106 106
             'UBL21' => 'Spec',
107 107
         ];
108
-        $strIdType    = 'unknown';
108
+        $strIdType = 'unknown';
109 109
         if (in_array($strKeyPrefix, array_keys($arrayMapping))) {
110 110
             $strIdType = $arrayMapping[$strKeyPrefix];
111 111
         }
Please login to merge, or discard this patch.