From 3e4f9448f313f1e04dfc2023e5fba413e6fcad8b Mon Sep 17 00:00:00 2001 From: ishifoev Date: Wed, 6 Apr 2022 09:44:37 +0500 Subject: [PATCH] Working with names convention --- src/Account/Contact.php | 2 +- src/Account/PostalAddress.php | 2 +- src/Invoice/Invoice.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Account/Contact.php b/src/Account/Contact.php index 6f2af7f..b47063e 100644 --- a/src/Account/Contact.php +++ b/src/Account/Contact.php @@ -71,7 +71,7 @@ public function setTelephone(?string $telephone): Contact /** * get electroic Mail */ - public function getElectroicMail(): ?string + public function getElectronicMail(): ?string { return $this->electronicMail; } diff --git a/src/Account/PostalAddress.php b/src/Account/PostalAddress.php index b51787a..3bfbab7 100644 --- a/src/Account/PostalAddress.php +++ b/src/Account/PostalAddress.php @@ -64,7 +64,7 @@ public function getAdditonalStreetName(): ?string /** * Set addional street name */ - public function setAddionalStreetName(?string $additionalStreetName): PostalAddress + public function setAdditionalStreetName(?string $additionalStreetName): PostalAddress { $this->additionalStreetName = $additionalStreetName; return $this; diff --git a/src/Invoice/Invoice.php b/src/Invoice/Invoice.php index 5c87654..77dfa45 100644 --- a/src/Invoice/Invoice.php +++ b/src/Invoice/Invoice.php @@ -92,7 +92,7 @@ public function setId(?string $id): Invoice /** * @return mixed */ - public function getCustomazationID(): ?string + public function getCustomizationID(): ?string { return $this->customizationID; } @@ -101,7 +101,7 @@ public function getCustomazationID(): ?string * @param mixed $customizationID * @return Invoice */ - public function setCustomazationID(?string $customizationID): Invoice + public function setCustomizationID(?string $customizationID): Invoice { $this->customizationID = $customizationID; return $this;