@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | return $arrayDocument; |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - private function getHeaderComponents(array $arrayParams, string $key, string $value): array|string |
|
| 104 | + private function getHeaderComponents(array $arrayParams, string $key, string $value): array | string |
|
| 105 | 105 | { |
| 106 | 106 | $arrayDocument = []; |
| 107 | 107 | if ($value === 'SingleCompany') { |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | ]) |
| 114 | 114 | ]; |
| 115 | 115 | } else { |
| 116 | - $arrayMapping = [ |
|
| 116 | + $arrayMapping = [ |
|
| 117 | 117 | 'Multiple' => [ |
| 118 | 118 | 'getMultipleElementsByKey' |
| 119 | 119 | , $arrayParams['data']->children('cac', true)->$key |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | 'data' => $objFile->children($strMap['cbc'], true), |
| 159 | 159 | 'namespace_cbc' => $arrayDocument['DocumentNameSpaces'][$strMap['cbc']], |
| 160 | 160 | ]); |
| 161 | - $arrayAggregates = $this->getHeader([ |
|
| 161 | + $arrayAggregates = $this->getHeader([ |
|
| 162 | 162 | 'CAC' => $objFile->children($strMap['cac'], true), |
| 163 | 163 | 'data' => $objFile, |
| 164 | 164 | ]); |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | $this->getBasicOrAggregateKey($arrayDocument['DocumentNameSpaces'], $strMap['cbc']) => $arrayBasics, |
| 167 | 167 | $this->getBasicOrAggregateKey($arrayDocument['DocumentNameSpaces'], $strMap['cac']) => $arrayAggregates, |
| 168 | 168 | ]; |
| 169 | - $arrayDocument['Lines'] = $this->getDocumentLines($objFile, $arrayDocument['DocumentTagName']); |
|
| 169 | + $arrayDocument['Lines'] = $this->getDocumentLines($objFile, $arrayDocument['DocumentTagName']); |
|
| 170 | 170 | return $arrayDocument; |
| 171 | 171 | } |
| 172 | 172 | |