<?php
namespace App\Entity\User;
use Doctrine\ORM\Mapping as ORM;
/**
* Class Tutorial.
*
* @ORM\Embeddable()
*/
class Tutorial
{
/**
* @var bool
*
* @ORM\Column(type="boolean")
*/
private $filter = false;
/**
* @var bool
*
* @ORM\Column(type="boolean")
*/
private $messenger = false;
/**
* @var bool
*
* @ORM\Column(type="boolean")
*/
private $notifications = false;
/**
* @var bool
*
* @ORM\Column(type="boolean")
*/
private $substances = false;
public function isFilter(): bool
{
return $this->filter;
}
public function setFilter(bool $filter): Tutorial
{
$this->filter = $filter;
return $this;
}
public function isMessenger(): bool
{
return $this->messenger;
}
public function setMessenger(bool $messenger): Tutorial
{
$this->messenger = $messenger;
return $this;
}
public function isNotifications(): bool
{
return $this->notifications;
}
public function setNotifications(bool $notifications): Tutorial
{
$this->notifications = $notifications;
return $this;
}
public function isSubstances(): bool
{
return $this->substances;
}
/**
* @return $this
*/
public function setSubstances(bool $substances): self
{
$this->substances = $substances;
return $this;
}
}