src\Entity\Typenews.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\TypenewsRepository")
  8.  */
  9. class Typenews
  10. {
  11.     /**
  12.      * @ORM\Id()
  13.      * @ORM\GeneratedValue()
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", length=255)
  19.      */
  20.     private $libelle;
  21.     /**
  22.      * @ORM\ManyToMany(targetEntity="App\Entity\News", mappedBy="type")
  23.      */
  24.     private $news;
  25.     /**
  26.      * @ORM\Column(type="string", length=255)
  27.      */
  28.     private $slug;
  29.     /**
  30.      * @ORM\Column(type="string", length=255, nullable=true)
  31.      */
  32.     private $libelle_en;
  33.     public function __construct()
  34.     {
  35.         $this->news = new ArrayCollection();
  36.     }
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getLibelle(): ?string
  42.     {
  43.         return $this->libelle;
  44.     }
  45.     public function setLibelle(string $libelle): self
  46.     {
  47.         $this->libelle $libelle;
  48.         return $this;
  49.     }
  50.     /**
  51.      * @return Collection|News[]
  52.      */
  53.     public function getNews(): Collection
  54.     {
  55.         return $this->news;
  56.     }
  57.     public function addNews(News $news): self
  58.     {
  59.         if (!$this->news->contains($news)) {
  60.             $this->news[] = $news;
  61.             $news->addType($this);
  62.         }
  63.         return $this;
  64.     }
  65.     public function removeNews(News $news): self
  66.     {
  67.         if ($this->news->contains($news)) {
  68.             $this->news->removeElement($news);
  69.             $news->removeType($this);
  70.         }
  71.         return $this;
  72.     }
  73.     public function getSlug(): ?string
  74.     {
  75.         return $this->slug;
  76.     }
  77.     public function setSlug(string $slug): self
  78.     {
  79.         $this->slug $slug;
  80.         return $this;
  81.     }
  82.     public function getLibelleEn(): ?string
  83.     {
  84.         return $this->libelle_en;
  85.     }
  86.     public function setLibelleEn(?string $libelle_en): self
  87.     {
  88.         $this->libelle_en $libelle_en;
  89.         return $this;
  90.     }
  91. }