src\Entity\Service.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\ServiceRepository")
  8.  */
  9. class Service
  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\Column(type="string", length=255, nullable=true)
  23.      */
  24.     private $typeservice;
  25.     /**
  26.      * @ORM\Column(type="text", nullable=true)
  27.      */
  28.     private $description;
  29.     /**
  30.      * @ORM\Column(type="datetime")
  31.      */
  32.     private $createat;
  33.     /**
  34.      * @ORM\Column(type="datetime", nullable=true)
  35.      */
  36.     private $updateat;
  37.     /**
  38.      * @ORM\OneToMany(targetEntity="App\Entity\Produit", mappedBy="service")
  39.      */
  40.     private $produit;
  41.     /**
  42.      * @ORM\ManyToMany(targetEntity="App\Entity\Newsletter", mappedBy="service")
  43.      */
  44.     private $newsletter;
  45.     
  46.     const type = ['M','Mme','Mlle'],
  47.         type_long =['Monsieur','Madame','Mademoiselle'];
  48.     public function __construct()
  49.     {
  50.         $this->produit = new ArrayCollection();
  51.         $this->createat=new \DateTime();
  52.         $this->newsletter = new ArrayCollection();
  53.     }
  54.     public function getId(): ?int
  55.     {
  56.         return $this->id;
  57.     }
  58.     public function getLibelle(): ?string
  59.     {
  60.         return $this->libelle;
  61.     }
  62.     public function setLibelle(string $libelle): self
  63.     {
  64.         $this->libelle $libelle;
  65.         return $this;
  66.     }
  67.     public function getTypeservice(): ?string
  68.     {
  69.         return $this->typeservice;
  70.     }
  71.     public function setTypeservice(?string $typeservice): self
  72.     {
  73.         $this->typeservice $typeservice;
  74.         return $this;
  75.     }
  76.     public function getDescription(): ?string
  77.     {
  78.         return $this->description;
  79.     }
  80.     public function setDescription(?string $description): self
  81.     {
  82.         $this->description $description;
  83.         return $this;
  84.     }
  85.     public function getCreateat(): ?\DateTimeInterface
  86.     {
  87.         return $this->createat;
  88.     }
  89.     public function setCreateat(\DateTimeInterface $createat): self
  90.     {
  91.         $this->createat $createat;
  92.         return $this;
  93.     }
  94.     public function getUpdateat(): ?\DateTimeInterface
  95.     {
  96.         return $this->updateat;
  97.     }
  98.     public function setUpdateat(?\DateTimeInterface $updateat): self
  99.     {
  100.         $this->updateat $updateat;
  101.         return $this;
  102.     }
  103.     /**
  104.      * @return Collection|Produit[]
  105.      */
  106.     public function getProduit(): Collection
  107.     {
  108.         return $this->produit;
  109.     }
  110.     public function addProduit(Produit $produit): self
  111.     {
  112.         if (!$this->produit->contains($produit)) {
  113.             $this->produit[] = $produit;
  114.             $produit->setService($this);
  115.         }
  116.         return $this;
  117.     }
  118.     public function removeProduit(Produit $produit): self
  119.     {
  120.         if ($this->produit->contains($produit)) {
  121.             $this->produit->removeElement($produit);
  122.             // set the owning side to null (unless already changed)
  123.             if ($produit->getService() === $this) {
  124.                 $produit->setService(null);
  125.             }
  126.         }
  127.         return $this;
  128.     }
  129.     /**
  130.      * @return Collection|Newsletter[]
  131.      */
  132.     public function getNewsletter(): Collection
  133.     {
  134.         return $this->newsletter;
  135.     }
  136.     public function addNewsletter(Newsletter $newsletter): self
  137.     {
  138.         if (!$this->newsletter->contains($newsletter)) {
  139.             $this->newsletter[] = $newsletter;
  140.             $newsletter->addService($this);
  141.         }
  142.         return $this;
  143.     }
  144.     public function removeNewsletter(Newsletter $newsletter): self
  145.     {
  146.         if ($this->newsletter->contains($newsletter)) {
  147.             $this->newsletter->removeElement($newsletter);
  148.             $newsletter->removeService($this);
  149.         }
  150.         return $this;
  151.     }
  152. }