We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f15978 commit 4f15c64Copy full SHA for 4f15c64
src/Entity/AddressValidation/AVAddress.php
@@ -71,11 +71,9 @@ public function __construct(\SimpleXMLElement $xmlDoc)
71
for ($i = 0, $len = count($xmlDoc->AddressLine); $i < $len; $i++) {
72
if ($i === 0) {
73
$this->addressLine = isset($xmlDoc->AddressLine[$i]) ? (string) $xmlDoc->AddressLine[$i] : '';
74
- }
75
- elseif ($i === 1) {
+ } elseif ($i === 1) {
76
$this->addressLine2 = isset($xmlDoc->AddressLine[$i]) ? (string) $xmlDoc->AddressLine[$i] : '';
77
78
- elseif ($i === 2) {
+ } elseif ($i === 2) {
79
$this->addressLine3 = isset($xmlDoc->AddressLine[$i]) ? (string) $xmlDoc->AddressLine[$i] : '';
80
}
81
0 commit comments