src/Entity/Categorie.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CategorieRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=CategorieRepository::class)
  9.  */
  10. class Categorie
  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)
  20.      */
  21.     private $nom;
  22.     /**
  23.      * @ORM\Column(type="text")
  24.      */
  25.     private $texte;
  26.     /**
  27.      * @ORM\Column(type="string", length=255)
  28.      */
  29.     private $photo;
  30.     /**
  31.      * @ORM\OneToMany(targetEntity=Produit::class, mappedBy="categorie")
  32.      */
  33.     private $produits;
  34.     /**
  35.      * @ORM\Column(type="string", length=255)
  36.      */
  37.     private $photobg;
  38.     public function __construct()
  39.     {
  40.         $this->cat = new ArrayCollection();
  41.         $this->produits = new ArrayCollection();
  42.     }
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getNom(): ?string
  48.     {
  49.         return $this->nom;
  50.     }
  51.     public function setNom(string $nom): self
  52.     {
  53.         $this->nom $nom;
  54.         return $this;
  55.     }
  56.     public function getTexte(): ?string
  57.     {
  58.         return $this->texte;
  59.     }
  60.     public function setTexte(string $texte): self
  61.     {
  62.         $this->texte $texte;
  63.         return $this;
  64.     }
  65.     public function getPhoto(): ?string
  66.     {
  67.         return $this->photo;
  68.     }
  69.     public function setPhoto(string $photo): self
  70.     {
  71.         $this->photo $photo;
  72.         return $this;
  73.     }
  74.     /**
  75.      * @return Collection<int, Produit>
  76.      */
  77.     public function getProduits(): Collection
  78.     {
  79.         return $this->produits;
  80.     }
  81.     public function addProduit(Produit $produit): self
  82.     {
  83.         if (!$this->produits->contains($produit)) {
  84.             $this->produits[] = $produit;
  85.             $produit->setCategorie($this);
  86.         }
  87.         return $this;
  88.     }
  89.     public function removeProduit(Produit $produit): self
  90.     {
  91.         if ($this->produits->removeElement($produit)) {
  92.             // set the owning side to null (unless already changed)
  93.             if ($produit->getCategorie() === $this) {
  94.                 $produit->setCategorie(null);
  95.             }
  96.         }
  97.         return $this;
  98.     }
  99.     public function getPhotobg(): ?string
  100.     {
  101.         return $this->photobg;
  102.     }
  103.     public function setPhotobg(string $photobg): self
  104.     {
  105.         $this->photobg $photobg;
  106.         return $this;
  107.     }
  108. }