src/Entity/Blocs.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BlocsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=BlocsRepository::class)
  9.  */
  10. class Blocs
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="integer", nullable=true)
  20.      */
  21.     private $Type;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $Color1;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $Color2;
  30.     /**
  31.      * @ORM\ManyToOne(targetEntity=Lignes::class, inversedBy="blocs")
  32.      */
  33.     private $Lignes;
  34.     /**
  35.      * @ORM\OneToMany(targetEntity=Contenus::class, mappedBy="Blocs")
  36.      */
  37.     private $contenuses;
  38.     public function __construct()
  39.     {
  40.         $this->contenuses = new ArrayCollection();
  41.     }
  42.     public function getId(): ?int
  43.     {
  44.         return $this->id;
  45.     }
  46.     public function getType(): ?int
  47.     {
  48.         return $this->Type;
  49.     }
  50.     public function setType(?int $Type): self
  51.     {
  52.         $this->Type $Type;
  53.         return $this;
  54.     }
  55.     public function getColor1(): ?string
  56.     {
  57.         return $this->Color1;
  58.     }
  59.     public function setColor1(?string $Color1): self
  60.     {
  61.         $this->Color1 $Color1;
  62.         return $this;
  63.     }
  64.     public function getColor2(): ?string
  65.     {
  66.         return $this->Color2;
  67.     }
  68.     public function setColor2(?string $Color2): self
  69.     {
  70.         $this->Color2 $Color2;
  71.         return $this;
  72.     }
  73.     public function getLignes(): ?Lignes
  74.     {
  75.         return $this->Lignes;
  76.     }
  77.     public function setLignes(?Lignes $Lignes): self
  78.     {
  79.         $this->Lignes $Lignes;
  80.         return $this;
  81.     }
  82.     /**
  83.      * @return Collection<int, Contenus>
  84.      */
  85.     public function getContenuses(): Collection
  86.     {
  87.         return $this->contenuses;
  88.     }
  89.     public function addContenus(Contenus $contenus): self
  90.     {
  91.         if (!$this->contenuses->contains($contenus)) {
  92.             $this->contenuses[] = $contenus;
  93.             $contenus->setBlocs($this);
  94.         }
  95.         return $this;
  96.     }
  97.     public function removeContenus(Contenus $contenus): self
  98.     {
  99.         if ($this->contenuses->removeElement($contenus)) {
  100.             // set the owning side to null (unless already changed)
  101.             if ($contenus->getBlocs() === $this) {
  102.                 $contenus->setBlocs(null);
  103.             }
  104.         }
  105.         return $this;
  106.     }
  107. }