<?php
namespace App\Entity\User;
use Doctrine\ORM\Mapping as ORM;
/**
* Class Settings.
*
* @ORM\Embeddable()
*/
class Settings
{
/**
* @var bool
*
* @ORM\Column(type="boolean")
*/
private $messengerNotificationSent = false;
public function isMessengerNotificationSent(): bool
{
return $this->messengerNotificationSent;
}
public function setMessengerNotificationSent(bool $messengerNotificationSent): void
{
$this->messengerNotificationSent = $messengerNotificationSent;
}
}