src/Entity/ProfessionalType.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProfessionalTypeRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=ProfessionalTypeRepository::class)
  9.  */
  10. class ProfessionalType
  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 $name;
  22.     /**
  23.      * @ORM\ManyToMany(targetEntity="Transporteur", mappedBy="professionalType")
  24.      */
  25.     private $transporteurs;
  26.     /**
  27.      * @ORM\Column(type="json")
  28.      */
  29.     private $modulesAssocies = [];
  30.     public function __construct()
  31.     {
  32.         $this->transporteurs = new ArrayCollection();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getName(): ?string
  39.     {
  40.         return $this->name;
  41.     }
  42.     public function setName(string $name): self
  43.     {
  44.         $this->name $name;
  45.         return $this;
  46.     }
  47.     /**
  48.      * @return Collection<int, Transporteur>
  49.      */
  50.     public function getTransporteurs(): Collection
  51.     {
  52.         return $this->transporteurs;
  53.     }
  54.     public function addTransporteur(Transporteur $transporteur): self
  55.     {
  56.         if (!$this->transporteurs->contains($transporteur)) {
  57.             $this->transporteurs[] = $transporteur;
  58.             $transporteur->addProfessionalType($this);
  59.         }
  60.         return $this;
  61.     }
  62.     public function removeTransporteur(Transporteur $transporteur): self
  63.     {
  64.         if ($this->transporteurs->removeElement($transporteur)) {
  65.             $transporteur->removeProfessionalType($this);
  66.         }
  67.         return $this;
  68.     }
  69.     public function getModulesAssocies(): ?array
  70.     {
  71.         return $this->modulesAssocies;
  72.     }
  73.     public function setModulesAssocies(array $modulesAssocies): self
  74.     {
  75.         $this->modulesAssocies $modulesAssocies ?: [];
  76.         return $this;
  77.     }
  78. }