From 2a0485b2391ac5e465d0f12d79f27f44cd3ba70a Mon Sep 17 00:00:00 2001 From: Dieter Blomme Date: Fri, 22 Dec 2023 17:55:01 +0100 Subject: [PATCH] Change order of setters --- Entity/AddressEmbeddable.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Entity/AddressEmbeddable.php b/Entity/AddressEmbeddable.php index 8ffb29b..10f51dc 100644 --- a/Entity/AddressEmbeddable.php +++ b/Entity/AddressEmbeddable.php @@ -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; @@ -162,9 +167,4 @@ public function setCountryCode(string $countryCode): void { $this->countryCode = $countryCode; } - - public function setAddressLine3(string $addressLine3): void - { - $this->addressLine3 = $addressLine3; - } }