src/Entity/Reponse.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ReponseRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassReponseRepository::class)]
  6. class Reponse
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(nullabletrue)]
  13.     private ?int $quantity null;
  14.     #[ORM\ManyToOne(inversedBy'reponses')]
  15.     private ?Question $question null;
  16.     #[ORM\Column]
  17.     private ?bool $deleted null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?int $minimalQuantity null;
  20.     #[ORM\ManyToOne(inversedBy'reponses')]
  21.     private ?Session $session null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getQuantity(): ?int
  27.     {
  28.         return $this->quantity;
  29.     }
  30.     public function setQuantity(?int $quantity): static
  31.     {
  32.         $this->quantity $quantity;
  33.         return $this;
  34.     }
  35.     public function getQuestion(): ?Question
  36.     {
  37.         return $this->question;
  38.     }
  39.     public function setQuestion(?Question $question): static
  40.     {
  41.         $this->question $question;
  42.         return $this;
  43.     }
  44.     public function isDeleted(): ?bool
  45.     {
  46.         return $this->deleted;
  47.     }
  48.     public function setDeleted(bool $deleted): static
  49.     {
  50.         $this->deleted $deleted;
  51.         return $this;
  52.     }
  53.     public function getMinimalQuantity(): ?int
  54.     {
  55.         return $this->minimalQuantity;
  56.     }
  57.     public function setMinimalQuantity(?int $minimalQuantity): static
  58.     {
  59.         $this->minimalQuantity $minimalQuantity;
  60.         return $this;
  61.     }
  62.     public function getSession(): ?Session
  63.     {
  64.         return $this->session;
  65.     }
  66.     public function setSession(?Session $session): static
  67.     {
  68.         $this->session $session;
  69.         return $this;
  70.     }
  71. }