src/Entity/Categories.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CategoriesRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=CategoriesRepository::class)
  9.  */
  10. class Categories
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $Libelle;
  22.     /**
  23.      * @ORM\OneToMany(targetEntity=Annonces::class, mappedBy="Categories")
  24.      */
  25.     private $annonces;
  26.     /**
  27.      * @ORM\OneToMany(targetEntity=Alertes::class, mappedBy="Categories")
  28.      */
  29.     private $alertes;
  30.     public function __construct()
  31.     {
  32.         $this->annonces = new ArrayCollection();
  33.         $this->alertes = new ArrayCollection();
  34.     }
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getLibelle(): ?string
  40.     {
  41.         return $this->Libelle;
  42.     }
  43.     public function setLibelle(?string $Libelle): self
  44.     {
  45.         $this->Libelle $Libelle;
  46.         return $this;
  47.     }
  48.     /**
  49.      * @return Collection<int, Annonces>
  50.      */
  51.     public function getAnnonces(): Collection
  52.     {
  53.         return $this->annonces;
  54.     }
  55.     public function addAnnonce(Annonces $annonce): self
  56.     {
  57.         if (!$this->annonces->contains($annonce)) {
  58.             $this->annonces[] = $annonce;
  59.             $annonce->setCategories($this);
  60.         }
  61.         return $this;
  62.     }
  63.     public function removeAnnonce(Annonces $annonce): self
  64.     {
  65.         if ($this->annonces->removeElement($annonce)) {
  66.             // set the owning side to null (unless already changed)
  67.             if ($annonce->getCategories() === $this) {
  68.                 $annonce->setCategories(null);
  69.             }
  70.         }
  71.         return $this;
  72.     }
  73.     /**
  74.      * @return Collection<int, Alertes>
  75.      */
  76.     public function getAlertes(): Collection
  77.     {
  78.         return $this->alertes;
  79.     }
  80.     public function addAlerte(Alertes $alerte): self
  81.     {
  82.         if (!$this->alertes->contains($alerte)) {
  83.             $this->alertes[] = $alerte;
  84.             $alerte->setCategories($this);
  85.         }
  86.         return $this;
  87.     }
  88.     public function removeAlerte(Alertes $alerte): self
  89.     {
  90.         if ($this->alertes->removeElement($alerte)) {
  91.             // set the owning side to null (unless already changed)
  92.             if ($alerte->getCategories() === $this) {
  93.                 $alerte->setCategories(null);
  94.             }
  95.         }
  96.         return $this;
  97.     }
  98. }