src/Entity/Configuration/ConditionnedOption.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Configuration;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Timestampable\Traits\TimestampableEntity;
  5. use App\Repository\Configuration\ConditionnedOptionRepository;
  6. #[ORM\Entity(repositoryClassConditionnedOptionRepository::class)]
  7. class ConditionnedOption
  8. {
  9.     const OPERATOR_EQUAL  "==";
  10.     use TimestampableEntity;
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne(inversedBy'conditionnedOptions')]
  16.     #[ORM\JoinColumn(nullablefalse)]
  17.     private ?OptionInSurvey $optionInSurvey null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $operator null;
  20.     #[ORM\ManyToOne(inversedBy'conditionnedResult')]
  21.     #[ORM\JoinColumn(nullablefalse)]
  22.     private ?OptionInSurvey $resultOptionInSurvey null;
  23.     #[ORM\ManyToOne(inversedBy'conditionnedOptions')]
  24.     #[ORM\JoinColumn(nullablefalse)]
  25.     private ?ValueInSurvey $choosenValueInSurvey null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?bool $isDisplay null;
  28.     public function __construct()
  29.     {
  30.         $this->createdAt = new \DateTime();
  31.         $this->updatedAt = new \DateTime();
  32.     }
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getOptionInSurvey(): ?OptionInSurvey
  38.     {
  39.         return $this->optionInSurvey;
  40.     }
  41.     public function setOptionInSurvey(?OptionInSurvey $optionInSurvey): self
  42.     {
  43.         $this->optionInSurvey $optionInSurvey;
  44.         return $this;
  45.     }
  46.     public function getOperator(): ?string
  47.     {
  48.         return $this->operator;
  49.     }
  50.     public function setOperator(?string $operator): self
  51.     {
  52.         $this->operator $operator;
  53.         return $this;
  54.     }
  55.     public function getResultOptionInSurvey(): ?OptionInSurvey
  56.     {
  57.         return $this->resultOptionInSurvey;
  58.     }
  59.     public function setResultOptionInSurvey(?OptionInSurvey $resultOptionInSurvey): self
  60.     {
  61.         $this->resultOptionInSurvey $resultOptionInSurvey;
  62.         return $this;
  63.     }
  64.     public function getChoosenValueInSurvey(): ?ValueInSurvey
  65.     {
  66.         return $this->choosenValueInSurvey;
  67.     }
  68.     public function setChoosenValueInSurvey(?ValueInSurvey $choosenValueInSurvey): self
  69.     {
  70.         $this->choosenValueInSurvey $choosenValueInSurvey;
  71.         return $this;
  72.     }
  73.     public function isIsDisplay(): ?bool
  74.     {
  75.         return $this->isDisplay;
  76.     }
  77.     public function setIsDisplay(?bool $isDisplay): self
  78.     {
  79.         $this->isDisplay $isDisplay;
  80.         return $this;
  81.     }
  82.     
  83. }