src/Entity/EvaluationLog.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EvaluationLogRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EvaluationLogRepository::class)
  7.  */
  8. class EvaluationLog
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Evaluation::class, inversedBy="evaluationLogs")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $evaluation;
  21.     /**
  22.      * @ORM\Column(type="integer", nullable=true)
  23.      */
  24.     private $nbrinscritrepondu;
  25.     /**
  26.      * @ORM\Column(type="integer")
  27.      */
  28.     private $nbrinscritsession;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getEvaluation(): ?Evaluation
  34.     {
  35.         return $this->evaluation;
  36.     }
  37.     public function setEvaluation(?Evaluation $evaluation): self
  38.     {
  39.         $this->evaluation $evaluation;
  40.         return $this;
  41.     }
  42.     public function getNbrinscritrepondu(): ?int
  43.     {
  44.         return $this->nbrinscritrepondu;
  45.     }
  46.     public function setNbrinscritrepondu(?int $nbrinscritrepondu): self
  47.     {
  48.         $this->nbrinscritrepondu $nbrinscritrepondu;
  49.         return $this;
  50.     }
  51.     public function getNbrinscritsession(): ?int
  52.     {
  53.         return $this->nbrinscritsession;
  54.     }
  55.     public function setNbrinscritsession(int $nbrinscritsession): self
  56.     {
  57.         $this->nbrinscritsession $nbrinscritsession;
  58.         return $this;
  59.     }
  60. }