update twig template and AddressType following the changes in Address entity

This commit is contained in:
nobohan
2021-04-23 16:48:27 +02:00
parent ebff36d257
commit 05d3d7f5c7
5 changed files with 32 additions and 32 deletions

View File

@@ -367,12 +367,12 @@ class Address
return $this;
}
public function getNumber(): ?string
public function getStreetNumber(): ?string
{
return $this->streetNumber;
}
public function setNumber(string $streetNumber): self
public function setStreetNumber(string $streetNumber): self
{
$this->streetNumber = $streetNumber;