src\Entity\TypePub.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\TypePubRepository")
  8.  */
  9. class TypePub
  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\OneToMany(targetEntity="App\Entity\Publicite", mappedBy="type")
  23.      */
  24.     private $publicite;
  25.     public function __construct()
  26.     {
  27.         $this->publicite = new ArrayCollection();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getLibelle(): ?string
  34.     {
  35.         return $this->libelle;
  36.     }
  37.     public function setLibelle(string $libelle): self
  38.     {
  39.         $this->libelle $libelle;
  40.         return $this;
  41.     }
  42.     /**
  43.      * @return Collection|Publicite[]
  44.      */
  45.     public function getPublicite(): Collection
  46.     {
  47.         return $this->publicite;
  48.     }
  49.     public function addPublicite(Publicite $publicite): self
  50.     {
  51.         if (!$this->publicite->contains($publicite)) {
  52.             $this->publicite[] = $publicite;
  53.             $publicite->setType($this);
  54.         }
  55.         return $this;
  56.     }
  57.     public function removePublicite(Publicite $publicite): self
  58.     {
  59.         if ($this->publicite->contains($publicite)) {
  60.             $this->publicite->removeElement($publicite);
  61.             // set the owning side to null (unless already changed)
  62.             if ($publicite->getType() === $this) {
  63.                 $publicite->setType(null);
  64.             }
  65.         }
  66.         return $this;
  67.     }
  68. }