|
@@ -65,7 +65,7 @@ class PublicEvent
|
|
|
private ?string $url;
|
|
private ?string $url;
|
|
|
|
|
|
|
|
#[ORM\Column(nullable: true)]
|
|
#[ORM\Column(nullable: true)]
|
|
|
- private ?string $helloAssoSlug;
|
|
|
|
|
|
|
+ private ?bool $hasHelloAssoForm;
|
|
|
|
|
|
|
|
#[ORM\Column(type: 'datetime')]
|
|
#[ORM\Column(type: 'datetime')]
|
|
|
private \DateTime $datetimeStart;
|
|
private \DateTime $datetimeStart;
|
|
@@ -202,14 +202,14 @@ class PublicEvent
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function getHelloAssoSlug(): ?string
|
|
|
|
|
|
|
+ public function getHasHelloAssoForm(): ?string
|
|
|
{
|
|
{
|
|
|
- return $this->helloAssoSlug;
|
|
|
|
|
|
|
+ return $this->hasHelloAssoForm;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function setHelloAssoSlug(?string $helloAssoSlug): PublicEvent
|
|
|
|
|
|
|
+ public function setHasHelloAssoForm(?bool $hasHelloAssoForm): PublicEvent
|
|
|
{
|
|
{
|
|
|
- $this->helloAssoSlug = $helloAssoSlug;
|
|
|
|
|
|
|
+ $this->hasHelloAssoForm = $hasHelloAssoForm;
|
|
|
|
|
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|