- <?php
- namespace CoreBundle\Entity\Vehicles;
- use CoreBundle\Entity\AutoRiaOptions;
- class VehicleAutoRiaOption
- {
-     /**
-      * @var int
-      */
-     protected $id;
-     /**
-      * @var Vehicle
-      */
-     protected $vehicle;
-     /**
-      * @var AutoRiaOptions
-      */
-     protected $option;
-     /**
-      * @var bool
-      */
-     protected $isShowInPdf = false;
-     public function getId(): ?int
-     {
-         return $this->id;
-     }
-     public function getIsShowInPdf(): ?bool
-     {
-         return $this->isShowInPdf;
-     }
-     public function setIsShowInPdf(bool $isShowInPdf): self
-     {
-         $this->isShowInPdf = $isShowInPdf;
-         return $this;
-     }
-     public function getVehicle(): ?Vehicle
-     {
-         return $this->vehicle;
-     }
-     public function setVehicle(?Vehicle $vehicle = null): self
-     {
-         $this->vehicle = $vehicle;
-         return $this;
-     }
-     public function getOption(): ?AutoRiaOptions
-     {
-         return $this->option;
-     }
-     public function setOption(?AutoRiaOptions $option): self
-     {
-         $this->option = $option;
-         return $this;
-     }
- }
-