src/Entity/Programme.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProgrammeRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassProgrammeRepository::class)]
  8. class Programme
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $nom null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $description null;
  18.    
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $seance null;
  21.     #[ORM\ManyToOne(inversedBy'programmes')]
  22.     private ?TrancheAge $trancheage null;
  23.     #[ORM\OneToMany(mappedBy'programme'targetEntitySession::class)]
  24.     private Collection $sessions;
  25.     public function __construct()
  26.     {
  27.         $this->sessions = new ArrayCollection();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getNom(): ?string
  34.     {
  35.         return $this->nom;
  36.     }
  37.     public function setNom(string $nom): self
  38.     {
  39.         $this->nom $nom;
  40.         return $this;
  41.     }
  42.   
  43.     public function getDescription(): ?string
  44.     {
  45.         return $this->description;
  46.     }
  47.     public function setDescription(?string $description): self
  48.     {
  49.         $this->description $description;
  50.         return $this;
  51.     }
  52.   
  53.     public function getSeance(): ?string
  54.     {
  55.         return $this->seance;
  56.     }
  57.     public function setSeance(?string $seance): self
  58.     {
  59.         $this->seance $seance;
  60.         return $this;
  61.     }
  62.     public function getTrancheage(): ?TrancheAge
  63.     {
  64.         return $this->trancheage;
  65.     }
  66.     public function setTrancheage(?TrancheAge $trancheage): self
  67.     {
  68.         $this->trancheage $trancheage;
  69.         return $this;
  70.     }
  71.     /**
  72.      * @return Collection<int, Session>
  73.      */
  74.     public function getSessions(): Collection
  75.     {
  76.         return $this->sessions;
  77.     }
  78.     public function addSession(Session $session): self
  79.     {
  80.         if (!$this->sessions->contains($session)) {
  81.             $this->sessions->add($session);
  82.             $session->setProgramme($this);
  83.         }
  84.         return $this;
  85.     }
  86.     public function removeSession(Session $session): self
  87.     {
  88.         if ($this->sessions->removeElement($session)) {
  89.             // set the owning side to null (unless already changed)
  90.             if ($session->getProgramme() === $this) {
  91.                 $session->setProgramme(null);
  92.             }
  93.         }
  94.         return $this;
  95.     }
  96. }