|
|
@@ -211,6 +211,9 @@ class Parameters
|
|
|
#[ORM\Column(options: ['default' => false])]
|
|
|
private bool $showEducationIsACollectivePractice = false;
|
|
|
|
|
|
+ #[ORM\Column(options: ['default' => false])]
|
|
|
+ private bool $handlePresence = false;
|
|
|
+
|
|
|
#[Pure]
|
|
|
public function __construct()
|
|
|
{
|
|
|
@@ -854,4 +857,16 @@ class Parameters
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
+
|
|
|
+ public function isHandlePresence(): bool
|
|
|
+ {
|
|
|
+ return $this->handlePresence;
|
|
|
+ }
|
|
|
+
|
|
|
+ public function setHandlePresence(bool $handlePresence): self
|
|
|
+ {
|
|
|
+ $this->handlePresence = $handlePresence;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
}
|