src/Entity/VehicleGroup.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VehicleGroupRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use App\Entity\TimestampableTrait;
  8. /**
  9.  * @ORM\Entity(repositoryClass=VehicleGroupRepository::class)
  10.  */
  11. class VehicleGroup
  12. {
  13.     use TimestampableTrait;
  14.     
  15.     /**
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      */
  24.     private $name;
  25.     /**
  26.      * @ORM\Column(type="text", nullable=true)
  27.      */
  28.     private $description;
  29.     /**
  30.      * @ORM\ManyToOne(targetEntity=Transporteur::class, inversedBy="vehicleGroups")
  31.      * @ORM\JoinColumn(nullable=false)
  32.      */
  33.     private $transporteur;
  34.     /**
  35.      * @ORM\OneToMany(targetEntity=Vehicle::class, mappedBy="vehicleGroup")
  36.      */
  37.     private $vehicles;
  38.     public function __construct()
  39.     {
  40.         $this->vehicles = new ArrayCollection();
  41.     }
  42.     public function getId(): ?int
  43.     {
  44.         return $this->id;
  45.     }
  46.     public function getName(): ?string
  47.     {
  48.         return $this->name;
  49.     }
  50.     public function setName(string $name): self
  51.     {
  52.         $this->name $name;
  53.         return $this;
  54.     }
  55.     public function getDescription(): ?string
  56.     {
  57.         return $this->description;
  58.     }
  59.     public function setDescription(?string $description): self
  60.     {
  61.         $this->description $description;
  62.         return $this;
  63.     }
  64.     public function getTransporteur(): ?Transporteur
  65.     {
  66.         return $this->transporteur;
  67.     }
  68.     public function setTransporteur(?Transporteur $transporteur): self
  69.     {
  70.         $this->transporteur $transporteur;
  71.         return $this;
  72.     }
  73.     
  74.     /**
  75.      * @return Collection<int, Vehicle>
  76.      */
  77.     public function getVehicles(): Collection
  78.     {
  79.         return $this->vehicles;
  80.     }
  81.     public function addVehicle(Vehicle $vehicle): self
  82.     {
  83.         if (!$this->vehicles->contains($vehicle)) {
  84.             $this->vehicles[] = $vehicle;
  85.             $vehicle->setVehicleGroup($this);
  86.         }
  87.         return $this;
  88.     }
  89.     public function removeVehicle(Vehicle $vehicle): self
  90.     {
  91.         if ($this->vehicles->removeElement($vehicle)) {
  92.             // set the owning side to null (unless already changed)
  93.             if ($vehicle->getVehicleGroup() === $this) {
  94.                 $vehicle->setVehicleGroup(null);
  95.             }
  96.         }
  97.         return $this;
  98.     }
  99. }