Skip to content

Commit

Permalink
Merge pull request #5 from pondersource/fix-names
Browse files Browse the repository at this point in the history
Working with names convention
  • Loading branch information
ishifoev authored Apr 7, 2022
2 parents 86d64bd + 3e4f944 commit 9ef03c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Account/Contact.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function setTelephone(?string $telephone): Contact
/**
* get electroic Mail
*/
public function getElectroicMail(): ?string
public function getElectronicMail(): ?string
{
return $this->electronicMail;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Account/PostalAddress.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/Invoice/Invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function setId(?string $id): Invoice
/**
* @return mixed
*/
public function getCustomazationID(): ?string
public function getCustomizationID(): ?string
{
return $this->customizationID;
}
Expand All @@ -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;
Expand Down

0 comments on commit 9ef03c9

Please sign in to comment.