Test Failed
Push — main ( 2ad17d...7bbdc7 )
by Daniel
02:34
created
source/ElectronicInvoiceRead.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
                         ]);
126 126
                         break;
127 127
                     case 'SingleCompanyWithoutParty':
128
-                        $arrayDocument[$strCAC][$key]          = $this->getAccountingCustomerOrSupplierParty([
128
+                        $arrayDocument[$strCAC][$key] = $this->getAccountingCustomerOrSupplierParty([
129 129
                             'data' => $arrayParams['CAC']->$key,
130 130
                             'type' => $key,
131 131
                         ]);
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         return $arrayDocument;
137 137
     }
138 138
 
139
-    private function getMultiplePaymentMeansElements(array|\SimpleXMLElement $arrayIn): array
139
+    private function getMultiplePaymentMeansElements(array | \SimpleXMLElement $arrayIn): array
140 140
     {
141 141
         $arrayToReturn = [];
142 142
         $intLineNo     = 0;
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
             'DocumentNameSpaces' => $arrayDocument['DocumentNameSpaces'],
163 163
             'DocumentTagName'    => $arrayDocument['DocumentTagName'],
164 164
         ]);
165
-        $arrayDocument['Lines']  = $this->getDocumentLines($objFile, $arrayDocument['DocumentTagName']);
165
+        $arrayDocument['Lines'] = $this->getDocumentLines($objFile, $arrayDocument['DocumentTagName']);
166 166
         return $arrayDocument;
167 167
     }
168 168
 }
Please login to merge, or discard this patch.
source/ElectronicInvoiceWrite.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
         }
172 172
     }
173 173
 
174
-    protected function setNumericValue(string $strTag, array $arrayDataIn): string|float
174
+    protected function setNumericValue(string $strTag, array $arrayDataIn): string | float
175 175
     {
176 176
         $sReturn      = $arrayDataIn['value'];
177 177
         $arrayRawTags = ['CreditedQuantity', 'EndpointID', 'InvoicedQuantity', 'PriceAmount'];
Please login to merge, or discard this patch.