@@ -137,8 +137,8 @@ |
||
137 | 137 | { |
138 | 138 | $isMockPayment = $this->getIsMockPayment(); |
139 | 139 | return !is_null($isMockPayment) |
140 | - ? ['isMockPayment' => $this->convertBooleanToString($isMockPayment)] |
|
141 | - : []; |
|
140 | + ? [ 'isMockPayment' => $this->convertBooleanToString($isMockPayment) ] |
|
141 | + : [ ]; |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | protected function getRootNodeName() |
@@ -91,7 +91,7 @@ |
||
91 | 91 | |
92 | 92 | protected function getRootAttributes() |
93 | 93 | { |
94 | - return ['id' => $this->getId()]; |
|
94 | + return [ 'id' => $this->getId() ]; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | protected function buildPhysicalAddressNodes(array $lines) |
@@ -91,7 +91,7 @@ |
||
91 | 91 | |
92 | 92 | protected function getRootAttributes() |
93 | 93 | { |
94 | - return ['id' => $this->getId()]; |
|
94 | + return [ 'id' => $this->getId() ]; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | protected function buildPhysicalAddressNodes(array $lines) |
@@ -113,6 +113,6 @@ |
||
113 | 113 | */ |
114 | 114 | protected function getRootAttributes() |
115 | 115 | { |
116 | - return []; |
|
116 | + return [ ]; |
|
117 | 117 | } |
118 | 118 | } |
@@ -113,6 +113,6 @@ |
||
113 | 113 | */ |
114 | 114 | protected function getRootAttributes() |
115 | 115 | { |
116 | - return []; |
|
116 | + return [ ]; |
|
117 | 117 | } |
118 | 118 | } |
@@ -113,6 +113,6 @@ |
||
113 | 113 | */ |
114 | 114 | protected function getRootAttributes() |
115 | 115 | { |
116 | - return []; |
|
116 | + return [ ]; |
|
117 | 117 | } |
118 | 118 | } |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | protected $responseCode; |
36 | 36 | /** @var array response codes that are considered a success */ |
37 | - protected $successResponseCodes = ['Success']; |
|
37 | + protected $successResponseCodes = [ 'Success' ]; |
|
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @param IValidatorIterator |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | protected $responseCode; |
36 | 36 | /** @var array response codes that are considered a success */ |
37 | - protected $successResponseCodes = ['Success']; |
|
37 | + protected $successResponseCodes = [ 'Success' ]; |
|
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @param IValidatorIterator |
@@ -50,7 +50,7 @@ |
||
50 | 50 | |
51 | 51 | $this->optionalExtractionPaths = array_merge( |
52 | 52 | $this->optionalExtractionPaths, |
53 | - ['calculationError' => 'x:CalculationError'] |
|
53 | + [ 'calculationError' => 'x:CalculationError' ] |
|
54 | 54 | ); |
55 | 55 | } |
56 | 56 |