|
|
@@ -120,7 +120,7 @@ class PublicEvent
|
|
|
* @param string $uuid
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setUuid(string $uuid): self
|
|
|
+ public function setUuid(string $uuid): PublicEvent
|
|
|
{
|
|
|
$this->uuid = $uuid;
|
|
|
return $this;
|
|
|
@@ -138,7 +138,7 @@ class PublicEvent
|
|
|
* @param int|null $organizationId
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setOrganizationId(?int $organizationId): self
|
|
|
+ public function setOrganizationId(?int $organizationId): PublicEvent
|
|
|
{
|
|
|
$this->organizationId = $organizationId;
|
|
|
return $this;
|
|
|
@@ -156,7 +156,7 @@ class PublicEvent
|
|
|
* @param string $name
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setName(string $name): self
|
|
|
+ public function setName(string $name): PublicEvent
|
|
|
{
|
|
|
$this->name = $name;
|
|
|
return $this;
|
|
|
@@ -174,7 +174,7 @@ class PublicEvent
|
|
|
* @param string|null $description
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setDescription(?string $description): self
|
|
|
+ public function setDescription(?string $description): PublicEvent
|
|
|
{
|
|
|
$this->description = $description;
|
|
|
return $this;
|
|
|
@@ -192,7 +192,7 @@ class PublicEvent
|
|
|
* @param string|null $url
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setUrl(?string $url): self
|
|
|
+ public function setUrl(?string $url): PublicEvent
|
|
|
{
|
|
|
$this->url = $url;
|
|
|
return $this;
|
|
|
@@ -210,7 +210,7 @@ class PublicEvent
|
|
|
* @param \DateTime $datetimeStart
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setDatetimeStart(\DateTime $datetimeStart): self
|
|
|
+ public function setDatetimeStart(\DateTime $datetimeStart): PublicEvent
|
|
|
{
|
|
|
$this->datetimeStart = $datetimeStart;
|
|
|
return $this;
|
|
|
@@ -228,7 +228,7 @@ class PublicEvent
|
|
|
* @param \DateTime $datetimeEnd
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setDatetimeEnd(\DateTime $datetimeEnd): self
|
|
|
+ public function setDatetimeEnd(\DateTime $datetimeEnd): PublicEvent
|
|
|
{
|
|
|
$this->datetimeEnd = $datetimeEnd;
|
|
|
return $this;
|
|
|
@@ -246,7 +246,7 @@ class PublicEvent
|
|
|
* @param string|null $city
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setCity(?string $city): self
|
|
|
+ public function setCity(?string $city): PublicEvent
|
|
|
{
|
|
|
$this->city = $city;
|
|
|
return $this;
|
|
|
@@ -264,7 +264,7 @@ class PublicEvent
|
|
|
* @param string|null $postalCode
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setPostalCode(?string $postalCode): self
|
|
|
+ public function setPostalCode(?string $postalCode): PublicEvent
|
|
|
{
|
|
|
$this->postalCode = $postalCode;
|
|
|
return $this;
|
|
|
@@ -282,7 +282,7 @@ class PublicEvent
|
|
|
* @param string|null $streetAddress
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setStreetAddress(?string $streetAddress): self
|
|
|
+ public function setStreetAddress(?string $streetAddress): PublicEvent
|
|
|
{
|
|
|
$this->streetAddress = $streetAddress;
|
|
|
return $this;
|
|
|
@@ -300,7 +300,7 @@ class PublicEvent
|
|
|
* @param float|null $longitude
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setLongitude(?float $longitude): self
|
|
|
+ public function setLongitude(?float $longitude): PublicEvent
|
|
|
{
|
|
|
$this->longitude = $longitude;
|
|
|
return $this;
|
|
|
@@ -318,7 +318,7 @@ class PublicEvent
|
|
|
* @param float|null $latitude
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setLatitude(?float $latitude): self
|
|
|
+ public function setLatitude(?float $latitude): PublicEvent
|
|
|
{
|
|
|
$this->latitude = $latitude;
|
|
|
return $this;
|
|
|
@@ -336,7 +336,7 @@ class PublicEvent
|
|
|
* @param string|null $roomName
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setRoomName(?string $roomName): self
|
|
|
+ public function setRoomName(?string $roomName): PublicEvent
|
|
|
{
|
|
|
$this->roomName = $roomName;
|
|
|
return $this;
|
|
|
@@ -354,7 +354,7 @@ class PublicEvent
|
|
|
* @param string|null $roomDescription
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setRoomDescription(?string $roomDescription): self
|
|
|
+ public function setRoomDescription(?string $roomDescription): PublicEvent
|
|
|
{
|
|
|
$this->roomDescription = $roomDescription;
|
|
|
return $this;
|
|
|
@@ -372,7 +372,7 @@ class PublicEvent
|
|
|
* @param string|null $roomLocalisation
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setRoomLocalisation(?string $roomLocalisation): self
|
|
|
+ public function setRoomLocalisation(?string $roomLocalisation): PublicEvent
|
|
|
{
|
|
|
$this->roomLocalisation = $roomLocalisation;
|
|
|
return $this;
|
|
|
@@ -390,7 +390,7 @@ class PublicEvent
|
|
|
* @param string|null $roomCapacity
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setRoomCapacity(?string $roomCapacity): self
|
|
|
+ public function setRoomCapacity(?string $roomCapacity): PublicEvent
|
|
|
{
|
|
|
$this->roomCapacity = $roomCapacity;
|
|
|
return $this;
|
|
|
@@ -408,7 +408,7 @@ class PublicEvent
|
|
|
* @param string|null $roomFloorSize
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setRoomFloorSize(?string $roomFloorSize): self
|
|
|
+ public function setRoomFloorSize(?string $roomFloorSize): PublicEvent
|
|
|
{
|
|
|
$this->roomFloorSize = $roomFloorSize;
|
|
|
return $this;
|
|
|
@@ -426,7 +426,7 @@ class PublicEvent
|
|
|
* @param string|null $imageUrl
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setImageUrl(?string $imageUrl): self
|
|
|
+ public function setImageUrl(?string $imageUrl): PublicEvent
|
|
|
{
|
|
|
$this->imageUrl = $imageUrl;
|
|
|
return $this;
|
|
|
@@ -444,7 +444,7 @@ class PublicEvent
|
|
|
* @param string|null $thumbnailUrl
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setThumbnailUrl(?string $thumbnailUrl): self
|
|
|
+ public function setThumbnailUrl(?string $thumbnailUrl): PublicEvent
|
|
|
{
|
|
|
$this->thumbnailUrl = $thumbnailUrl;
|
|
|
return $this;
|
|
|
@@ -462,7 +462,7 @@ class PublicEvent
|
|
|
* @param array|null $categories
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setCategories(?array $categories): self
|
|
|
+ public function setCategories(?array $categories): PublicEvent
|
|
|
{
|
|
|
$this->categories = $categories;
|
|
|
return $this;
|
|
|
@@ -480,7 +480,7 @@ class PublicEvent
|
|
|
* @param string $origin
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setOrigin(string $origin): self
|
|
|
+ public function setOrigin(string $origin): PublicEvent
|
|
|
{
|
|
|
$this->origin = $origin;
|
|
|
return $this;
|
|
|
@@ -498,7 +498,7 @@ class PublicEvent
|
|
|
* @param int $entityId
|
|
|
* @return PublicEvent
|
|
|
*/
|
|
|
- public function setEntityId(int $entityId): self
|
|
|
+ public function setEntityId(int $entityId): PublicEvent
|
|
|
{
|
|
|
$this->entityId = $entityId;
|
|
|
return $this;
|