src/Entity/VoyageEtat.php line 16

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. use JMS\Serializer\Annotation as Serializer;
  7. /**
  8.  * @ORM\Table(name="walkinn_voyage_etat")
  9.  * @ORM\Entity(repositoryClass="App\Repository\VoyageEtatRepository")
  10.  * @Serializer\ExclusionPolicy("all")
  11.  */
  12. class VoyageEtat
  13. {
  14.     use \App\Traits\Timestampable;
  15.     use \App\Traits\Blameable;
  16.     /**
  17.      * @ORM\Id()
  18.      * @ORM\GeneratedValue()
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $libelle;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $icone;
  30.     /**
  31.      *
  32.      * @ORM\Column(name="color", type="string", length=255, nullable=true)
  33.      */
  34.     private $color;
  35.     /**
  36.      * @ORM\Column(type="boolean", nullable=true)
  37.      */
  38.     private $actif 1;
  39.     /**
  40.      * @ORM\OneToMany(targetEntity="App\Entity\Voyage", mappedBy="voyageEtat")
  41.      */
  42.     private $voyages;
  43.     public function __construct()
  44.     {
  45.         $this->voyages = new ArrayCollection();
  46.     }
  47.     public function __toString()
  48.     {
  49.         return $this->libelle;
  50.     }
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getLibelle(): ?string
  56.     {
  57.         return $this->libelle;
  58.     }
  59.     public function setLibelle(?string $libelle): self
  60.     {
  61.         $this->libelle $libelle;
  62.         return $this;
  63.     }
  64.     public function getIcone(): ?string
  65.     {
  66.         return $this->icone;
  67.     }
  68.     public function setIcone(?string $icone): self
  69.     {
  70.         $this->icone $icone;
  71.         return $this;
  72.     }
  73.     public function getColor(): ?string
  74.     {
  75.         return $this->color;
  76.     }
  77.     public function setColor(?string $color): self
  78.     {
  79.         $this->color $color;
  80.         return $this;
  81.     }
  82.     public function getActif(): ?bool
  83.     {
  84.         return $this->actif;
  85.     }
  86.     public function setActif(?bool $actif): self
  87.     {
  88.         $this->actif $actif;
  89.         return $this;
  90.     }
  91.     /**
  92.      * @return Collection|Voyage[]
  93.      */
  94.     public function getVoyages(): Collection
  95.     {
  96.         return $this->voyages;
  97.     }
  98.     public function addVoyage(Voyage $voyage): self
  99.     {
  100.         if (!$this->voyages->contains($voyage)) {
  101.             $this->voyages[] = $voyage;
  102.             $voyage->setVoyageEtat($this);
  103.         }
  104.         return $this;
  105.     }
  106.     public function removeVoyage(Voyage $voyage): self
  107.     {
  108.         if ($this->voyages->contains($voyage)) {
  109.             $this->voyages->removeElement($voyage);
  110.             // set the owning side to null (unless already changed)
  111.             if ($voyage->getVoyageEtat() === $this) {
  112.                 $voyage->setVoyageEtat(null);
  113.             }
  114.         }
  115.         return $this;
  116.     }
  117. }