src/Entity/VehicleType.php line 15

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