Test Failed
Push — main ( 0a6cd6...1eb369 )
by Daniel
02:10
created
source/ElectronicInvoiceRead.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,14 +120,14 @@  discard block
 block discarded – undo
120 120
                     ->CreditNoteTypeCode->__toString();
121 121
                 break;
122 122
             case 'Invoice':
123
-                $arrayOutput['InvoiceTypeCode']    = (integer) $objCommonBasicComponents
123
+                $arrayOutput['InvoiceTypeCode'] = (integer) $objCommonBasicComponents
124 124
                     ->InvoiceTypeCode->__toString();
125 125
                 break;
126 126
         }
127 127
         return $arrayOutput;
128 128
     }
129 129
 
130
-    private function getMultipleElements(array|\SimpleXMLElement $arrayIn): array
130
+    private function getMultipleElements(array | \SimpleXMLElement $arrayIn): array
131 131
     {
132 132
         $arrayToReturn = [];
133 133
         $intLineNo     = 0;
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
             'DocumentNameSpaces' => $arrayDocument['DocumentNameSpaces'],
154 154
             'DocumentTagName'    => $arrayDocument['DocumentTagName'],
155 155
         ]);
156
-        $arrayDocument['Lines']  = $this->getDocumentLines($objFile, $arrayDocument['DocumentTagName']);
156
+        $arrayDocument['Lines'] = $this->getDocumentLines($objFile, $arrayDocument['DocumentTagName']);
157 157
         return $arrayDocument;
158 158
     }
159 159
 }
Please login to merge, or discard this patch.
source/TraitBasic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
         $this->arraySettings['CustomOrder'] = $this->getJsonFromFile('ElectronicInvoiceHierarchyTagOrder.json');
81 81
     }
82 82
 
83
-    private function getMultipleElementsStandard(array|\SimpleXMLElement $arrayIn): array
83
+    private function getMultipleElementsStandard(array | \SimpleXMLElement $arrayIn): array
84 84
     {
85 85
         $arrayToReturn = [];
86 86
         $intLineNo     = 0;
Please login to merge, or discard this patch.