Skip to content

Commit

Permalink
Change order of setters
Browse files Browse the repository at this point in the history
  • Loading branch information
daften committed Dec 22, 2023
1 parent a69eb00 commit 2a0485b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Entity/AddressEmbeddable.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ public function setAddressLine2(string $addressLine2): void
$this->addressLine2 = $addressLine2;
}

public function setAddressLine3(string $addressLine3): void
{
$this->addressLine3 = $addressLine3;
}

public function setPostalCode(string $postalCode): void
{
$this->postalCode = $postalCode;
Expand Down Expand Up @@ -162,9 +167,4 @@ public function setCountryCode(string $countryCode): void
{
$this->countryCode = $countryCode;
}

public function setAddressLine3(string $addressLine3): void
{
$this->addressLine3 = $addressLine3;
}
}

0 comments on commit 2a0485b

Please sign in to comment.