src/Entity/User/Settings.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\User;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Class Settings.
  6.  *
  7.  * @ORM\Embeddable()
  8.  */
  9. class Settings
  10. {
  11.     /**
  12.      * @var bool
  13.      *
  14.      * @ORM\Column(type="boolean")
  15.      */
  16.     private $messengerNotificationSent false;
  17.     public function isMessengerNotificationSent(): bool
  18.     {
  19.         return $this->messengerNotificationSent;
  20.     }
  21.     public function setMessengerNotificationSent(bool $messengerNotificationSent): void
  22.     {
  23.         $this->messengerNotificationSent $messengerNotificationSent;
  24.     }
  25. }