@@ -162,7 +162,7 @@ |
||
| 162 | 162 | protected function getRootAttributes() |
| 163 | 163 | { |
| 164 | 164 | $appliedCount = $this->sanitizeAmount($this->getAppliedCount()); |
| 165 | - return !is_null($appliedCount) ? ['appliedCount' => (int) $appliedCount] : []; |
|
| 165 | + return !is_null($appliedCount) ? [ 'appliedCount' => (int) $appliedCount ] : [ ]; |
|
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | protected function getRootNodeName() |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | |
| 86 | 86 | protected function getRootAttributes() |
| 87 | 87 | { |
| 88 | - return ['id' => $this->getId()]; |
|
| 88 | + return [ 'id' => $this->getId() ]; |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | protected function getPersonNameRootNodeName() |
@@ -160,7 +160,7 @@ |
||
| 160 | 160 | |
| 161 | 161 | protected function getRootAttributes() |
| 162 | 162 | { |
| 163 | - return ['parent' => $this->getParentItemId()]; |
|
| 163 | + return [ 'parent' => $this->getParentItemId() ]; |
|
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | protected function getRootNodeName() |
@@ -53,11 +53,11 @@ |
||
| 53 | 53 | $this->logger = $logger; |
| 54 | 54 | $this->extractionPaths = array_merge( |
| 55 | 55 | $this->extractionPaths, |
| 56 | - ['id' => 'string(@id)'] |
|
| 56 | + [ 'id' => 'string(@id)' ] |
|
| 57 | 57 | ); |
| 58 | 58 | $this->optionalExtractionPaths = array_merge( |
| 59 | 59 | $this->optionalExtractionPaths, |
| 60 | - ['phone' => 'x:Phone'] |
|
| 60 | + [ 'phone' => 'x:Phone' ] |
|
| 61 | 61 | ); |
| 62 | 62 | } |
| 63 | 63 | |
@@ -182,9 +182,9 @@ |
||
| 182 | 182 | protected function getRootAttributes() |
| 183 | 183 | { |
| 184 | 184 | $orderType = $this->getOrderType(); |
| 185 | - $attributes = ['xmlns' => $this->getXmlNamespace()]; |
|
| 185 | + $attributes = [ 'xmlns' => $this->getXmlNamespace() ]; |
|
| 186 | 186 | return $orderType |
| 187 | - ? array_merge($attributes, ['orderType' => $this->getOrderType()]) |
|
| 187 | + ? array_merge($attributes, [ 'orderType' => $this->getOrderType() ]) |
|
| 188 | 188 | : $attributes; |
| 189 | 189 | } |
| 190 | 190 | } |
@@ -117,6 +117,6 @@ |
||
| 117 | 117 | */ |
| 118 | 118 | protected function getRootAttributes() |
| 119 | 119 | { |
| 120 | - return ['xmlns' => $this->getXmlNamespace()]; |
|
| 120 | + return [ 'xmlns' => $this->getXmlNamespace() ]; |
|
| 121 | 121 | } |
| 122 | 122 | } |
@@ -72,8 +72,8 @@ |
||
| 72 | 72 | { |
| 73 | 73 | $xpath = $this->getPayloadAsXPath($serializedData); |
| 74 | 74 | foreach ($xpath->query($this->getSubpayloadXPath()) as $subpayloadNode) { |
| 75 | - if (isset($this->subpayloadNodeMap[$subpayloadNode->nodeName])) { |
|
| 76 | - $plFactoryMethod = $this->subpayloadNodeMap[$subpayloadNode->nodeName]; |
|
| 75 | + if (isset($this->subpayloadNodeMap[ $subpayloadNode->nodeName ])) { |
|
| 76 | + $plFactoryMethod = $this->subpayloadNodeMap[ $subpayloadNode->nodeName ]; |
|
| 77 | 77 | $pl = $this->$plFactoryMethod(); |
| 78 | 78 | } |
| 79 | 79 | if (isset($pl)) { |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | $this->logger = $logger; |
| 50 | 50 | $this->optionalExtractionPaths = array_merge( |
| 51 | 51 | $this->optionalExtractionPaths, |
| 52 | - ['brand' => 'x:Brand'] |
|
| 52 | + [ 'brand' => 'x:Brand' ] |
|
| 53 | 53 | ); |
| 54 | 54 | } |
| 55 | 55 | |
@@ -135,7 +135,7 @@ |
||
| 135 | 135 | |
| 136 | 136 | protected function getRootAttributes() |
| 137 | 137 | { |
| 138 | - return ['id' => $this->getId()]; |
|
| 138 | + return [ 'id' => $this->getId() ]; |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | protected function getPhysicalAddressRootNodeName() |