src/Entity/TrancheAge.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TrancheAgeRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassTrancheAgeRepository::class)]
  8. class TrancheAge
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column]
  15.     private ?int $agemin null;
  16.     #[ORM\Column]
  17.     private ?int $agemax null;
  18.     #[ORM\Column(length255)]
  19.     private ?string $trancheage null;
  20.     #[ORM\OneToMany(mappedBy'trancheage'targetEntityProgramme::class)]
  21.     private Collection $programmes;
  22.     public function __construct()
  23.     {
  24.         $this->programmes = new ArrayCollection();
  25.     }
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getAgemin(): ?int
  31.     {
  32.         return $this->agemin;
  33.     }
  34.     public function setAgemin(int $agemin): self
  35.     {
  36.         $this->agemin $agemin;
  37.         return $this;
  38.     }
  39.     public function getAgemax(): ?int
  40.     {
  41.         return $this->agemax;
  42.     }
  43.     public function setAgemax(int $agemax): self
  44.     {
  45.         $this->agemax $agemax;
  46.         return $this;
  47.     }
  48.     public function getTrancheage(): ?string
  49.     {
  50.         return $this->trancheage;
  51.     }
  52.     public function setTrancheage(string $trancheage): self
  53.     {
  54.         $this->trancheage $trancheage;
  55.         return $this;
  56.     }
  57.     /**
  58.      * @return Collection<int, Programme>
  59.      */
  60.     public function getProgrammes(): Collection
  61.     {
  62.         return $this->programmes;
  63.     }
  64.     public function addProgramme(Programme $programme): self
  65.     {
  66.         if (!$this->programmes->contains($programme)) {
  67.             $this->programmes->add($programme);
  68.             $programme->setTrancheage($this);
  69.         }
  70.         return $this;
  71.     }
  72.     public function removeProgramme(Programme $programme): self
  73.     {
  74.         if ($this->programmes->removeElement($programme)) {
  75.             // set the owning side to null (unless already changed)
  76.             if ($programme->getTrancheage() === $this) {
  77.                 $programme->setTrancheage(null);
  78.             }
  79.         }
  80.         return $this;
  81.     }
  82. }