src/Entity/User/Tutorial.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\User;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Class Tutorial.
  6.  *
  7.  * @ORM\Embeddable()
  8.  */
  9. class Tutorial
  10. {
  11.     /**
  12.      * @var bool
  13.      *
  14.      * @ORM\Column(type="boolean")
  15.      */
  16.     private $filter false;
  17.     /**
  18.      * @var bool
  19.      *
  20.      * @ORM\Column(type="boolean")
  21.      */
  22.     private $messenger false;
  23.     /**
  24.      * @var bool
  25.      *
  26.      * @ORM\Column(type="boolean")
  27.      */
  28.     private $notifications false;
  29.     /**
  30.      * @var bool
  31.      *
  32.      * @ORM\Column(type="boolean")
  33.      */
  34.     private $substances false;
  35.     public function isFilter(): bool
  36.     {
  37.         return $this->filter;
  38.     }
  39.     public function setFilter(bool $filter): Tutorial
  40.     {
  41.         $this->filter $filter;
  42.         return $this;
  43.     }
  44.     public function isMessenger(): bool
  45.     {
  46.         return $this->messenger;
  47.     }
  48.     public function setMessenger(bool $messenger): Tutorial
  49.     {
  50.         $this->messenger $messenger;
  51.         return $this;
  52.     }
  53.     public function isNotifications(): bool
  54.     {
  55.         return $this->notifications;
  56.     }
  57.     public function setNotifications(bool $notifications): Tutorial
  58.     {
  59.         $this->notifications $notifications;
  60.         return $this;
  61.     }
  62.     public function isSubstances(): bool
  63.     {
  64.         return $this->substances;
  65.     }
  66.     /**
  67.      * @return $this
  68.      */
  69.     public function setSubstances(bool $substances): self
  70.     {
  71.         $this->substances $substances;
  72.         return $this;
  73.     }
  74. }