src/Entity/ControleLimiteurVitesse.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\TimestampableTrait;
  4. use App\Repository\ControleLimiteurVitesseRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=ControleLimiteurVitesseRepository::class)
  10.  */
  11. class ControleLimiteurVitesse
  12. {
  13.     use TimestampableTrait;
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\ManyToOne(targetEntity=Transporteur::class, inversedBy="controleLimiteurVitesses")
  22.      */
  23.     private $transporteur;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $company;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $pvNumber;
  32.     /**
  33.      * @ORM\Column(type="date")
  34.      */
  35.     private $date;
  36.     /**
  37.      * @ORM\Column(type="date", nullable=true)
  38.      */
  39.     private $nextDate;
  40.     /**
  41.      * @ORM\Column(type="text", nullable=true)
  42.      */
  43.     private $infos;
  44.     /**
  45.      * @ORM\ManyToOne(targetEntity=Vehicle::class, inversedBy="controleLimiteurVitesses")
  46.      */
  47.     private $vehicle;
  48.     /**
  49.      * @ORM\OneToMany(targetEntity=Attachment::class, mappedBy="controleLimiteurVitesse", orphanRemoval=true, cascade={"persist"})
  50.      */
  51.     private $attachments;
  52.     public function __construct()
  53.     {
  54.         $this->attachments = new ArrayCollection();
  55.     }
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     public function getTransporteur(): ?Transporteur
  61.     {
  62.         return $this->transporteur;
  63.     }
  64.     public function setTransporteur(?Transporteur $transporteur): self
  65.     {
  66.         $this->transporteur $transporteur;
  67.         return $this;
  68.     }
  69.     public function getCompany(): ?string
  70.     {
  71.         return $this->company;
  72.     }
  73.     public function setCompany(string $company): self
  74.     {
  75.         $this->company $company;
  76.         return $this;
  77.     }
  78.     public function getPvNumber(): ?string
  79.     {
  80.         return $this->pvNumber;
  81.     }
  82.     public function setPvNumber(string $pvNumber): self
  83.     {
  84.         $this->pvNumber $pvNumber;
  85.         return $this;
  86.     }
  87.     public function getDate(): ?\DateTimeInterface
  88.     {
  89.         return $this->date;
  90.     }
  91.     public function setDate(\DateTimeInterface $date): self
  92.     {
  93.         $this->date $date;
  94.         return $this;
  95.     }
  96.     public function getNextDate(): ?\DateTimeInterface
  97.     {
  98.         return $this->nextDate;
  99.     }
  100.     public function setNextDate(?\DateTimeInterface $nextDate): self
  101.     {
  102.         $this->nextDate $nextDate;
  103.         return $this;
  104.     }
  105.     public function getInfos(): ?string
  106.     {
  107.         return $this->infos;
  108.     }
  109.     public function setInfos(?string $infos): self
  110.     {
  111.         $this->infos $infos;
  112.         return $this;
  113.     }
  114.     public function getVehicle(): ?Vehicle
  115.     {
  116.         return $this->vehicle;
  117.     }
  118.     public function setVehicle(?Vehicle $vehicle): self
  119.     {
  120.         $this->vehicle $vehicle;
  121.         return $this;
  122.     }
  123.     /**
  124.      * @return Collection<int, Attachment>
  125.      */
  126.     public function getAttachments(): Collection
  127.     {
  128.         return $this->attachments;
  129.     }
  130.     public function addAttachment(Attachment $attachment): self
  131.     {
  132.         if (!$this->attachments->contains($attachment)) {
  133.             $this->attachments[] = $attachment;
  134.             $attachment->setControleLimiteurVitesse($this);
  135.         }
  136.         return $this;
  137.     }
  138.     public function removeAttachment(Attachment $attachment): self
  139.     {
  140.         if ($this->attachments->removeElement($attachment)) {
  141.             // set the owning side to null (unless already changed)
  142.             if ($attachment->getControleLimiteurVitesse() === $this) {
  143.                 $attachment->setControleLimiteurVitesse(null);
  144.             }
  145.         }
  146.         return $this;
  147.     }
  148. }