src/Entity/Motorcycle.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MotorcycleRepository;
  4. use DateTimeInterface;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=MotorcycleRepository::class)
  10.  */
  11. class Motorcycle
  12. {
  13.     /**
  14.      * @ORM\Id()
  15.      * @ORM\GeneratedValue()
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=30)
  21.      */
  22.     private ?string $mark;
  23.     /**
  24.      * @ORM\Column(type="string", length=30)
  25.      */
  26.     private ?string $model;
  27.     /**
  28.      * @ORM\Column(type="string", length=30)
  29.      */
  30.     private ?string $vinNumber;
  31.     /**
  32.      * @ORM\Column(type="string", length=30)
  33.      */
  34.     private ?string $registrationNumber;
  35.     /**
  36.      * @ORM\Column(type="datetime")
  37.      */
  38.     private DateTimeInterface $issueYear;
  39.     /**
  40.      * @ORM\Column(type="float")
  41.      */
  42.     private float $paymentAmount;
  43.     /**
  44.      * @ORM\OneToMany(targetEntity=Reserve::class, mappedBy="motorcycle")
  45.      */
  46.     private Collection $reserves;
  47.     /**
  48.      * @ORM\Column(type="string", length=16, nullable=true)
  49.      */
  50.     private $color;
  51.     public function __construct()
  52.     {
  53.         $this->reserves =  new ArrayCollection();
  54.     }
  55.     public function getId(): ?int
  56.     {
  57.         return $this->id;
  58.     }
  59.     public function getMark(): ?string
  60.     {
  61.         return $this->mark;
  62.     }
  63.     public function setMark(string $mark): void
  64.     {
  65.         $this->mark $mark;
  66.     }
  67.     public function getModel(): ?string
  68.     {
  69.         return $this->model;
  70.     }
  71.     public function setModel(string $model): self
  72.     {
  73.         $this->model $model;
  74.         return $this;
  75.     }
  76.     public function getReserves(): Collection
  77.     {
  78.         return $this->reserves;
  79.     }
  80.     public function setReserves(Collection $reserves): void
  81.     {
  82.         $this->reserves $reserves;
  83.     }
  84.     public function __toString(): string
  85.     {
  86.         return $this->getMark() . ' ' $this->getModel();
  87.     }
  88.     public function getVinNumber(): ?string
  89.     {
  90.         return $this->vinNumber;
  91.     }
  92.     public function setVinNumber(?string $vinNumber): void
  93.     {
  94.         $this->vinNumber $vinNumber;
  95.     }
  96.     public function getRegistrationNumber(): ?string
  97.     {
  98.         return $this->registrationNumber;
  99.     }
  100.     public function setRegistrationNumber(?string $registrationNumber): void
  101.     {
  102.         $this->registrationNumber $registrationNumber;
  103.     }
  104.     public function getIssueYear(): ?DateTimeInterface
  105.     {
  106.         return $this->issueYear;
  107.     }
  108.     public function setIssueYear(DateTimeInterface $issueYear): void
  109.     {
  110.         $this->issueYear $issueYear;
  111.     }
  112.     public function getPaymentAmount(): float
  113.     {
  114.         return $this->paymentAmount;
  115.     }
  116.     public function setPaymentAmount(float $paymentAmount): void
  117.     {
  118.         $this->paymentAmount $paymentAmount;
  119.     }
  120.     public function getColor(): ?string
  121.     {
  122.         return $this->color ?? '#ff0000';
  123.     }
  124.     public function setColor(?string $color): self
  125.     {
  126.         $this->color $color;
  127.         return $this;
  128.     }
  129.     public function getFullName(): string
  130.     {
  131.         return $this->getMark() . ' ' $this->getModel();
  132.     }
  133. }