|
@@ -2392,48 +2392,48 @@ class Access implements UserInterface, PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function getAccessSocial(): AccessSocial
|
|
|
|
|
|
|
+ public function getAccessSocial(): ?AccessSocial
|
|
|
{
|
|
{
|
|
|
return $this->accessSocial;
|
|
return $this->accessSocial;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function setAccessSocial(AccessSocial $accessSocial): self
|
|
|
|
|
|
|
+ public function setAccessSocial(?AccessSocial $accessSocial): self
|
|
|
{
|
|
{
|
|
|
$this->accessSocial = $accessSocial;
|
|
$this->accessSocial = $accessSocial;
|
|
|
|
|
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function getAccessNetworkSetting(): AccessNetworkSetting
|
|
|
|
|
|
|
+ public function getAccessNetworkSetting(): ?AccessNetworkSetting
|
|
|
{
|
|
{
|
|
|
return $this->accessNetworkSetting;
|
|
return $this->accessNetworkSetting;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function setAccessNetworkSetting(AccessNetworkSetting $accessNetworkSetting): self
|
|
|
|
|
|
|
+ public function setAccessNetworkSetting(?AccessNetworkSetting $accessNetworkSetting): self
|
|
|
{
|
|
{
|
|
|
$this->accessNetworkSetting = $accessNetworkSetting;
|
|
$this->accessNetworkSetting = $accessNetworkSetting;
|
|
|
|
|
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function getAccessCommunication(): AccessCommunication
|
|
|
|
|
|
|
+ public function getAccessCommunication(): ?AccessCommunication
|
|
|
{
|
|
{
|
|
|
return $this->accessCommunication;
|
|
return $this->accessCommunication;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function setAccessCommunication(AccessCommunication $accessCommunication): self
|
|
|
|
|
|
|
+ public function setAccessCommunication(?AccessCommunication $accessCommunication): self
|
|
|
{
|
|
{
|
|
|
$this->accessCommunication = $accessCommunication;
|
|
$this->accessCommunication = $accessCommunication;
|
|
|
|
|
|
|
|
return $this;
|
|
return $this;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function getCalendarSynchro(): CalendarSynchro
|
|
|
|
|
|
|
+ public function getCalendarSynchro(): ?CalendarSynchro
|
|
|
{
|
|
{
|
|
|
return $this->calendarSynchro;
|
|
return $this->calendarSynchro;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public function setCalendarSynchro(CalendarSynchro $calendarSynchro): self
|
|
|
|
|
|
|
+ public function setCalendarSynchro(?CalendarSynchro $calendarSynchro): self
|
|
|
{
|
|
{
|
|
|
$this->calendarSynchro = $calendarSynchro;
|
|
$this->calendarSynchro = $calendarSynchro;
|
|
|
|
|
|