WIP: Improve assignment overview for teamers in mobile view

This commit is contained in:
Björn Fromme
2023-10-20 12:47:03 +02:00
parent 7f3115a0ba
commit fd23ea7503
8 changed files with 127 additions and 75 deletions
+12
View File
@@ -12,6 +12,7 @@ class Hotel
private ?string $street = null;
private ?string $phone = null;
private ?string $type = null;
private ?string $country = null;
public function getId(): ?int
{
@@ -109,4 +110,15 @@ class Hotel
return $this;
}
public function getCountry(): ?string
{
return $this->country;
}
public function setCountry(?string $country): static
{
$this->country = $country;
return $this;
}
}