<?phpnamespace App\Entity;use App\Repository\CarFleetRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=CarFleetRepository::class) */class CarFleet{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="integer", nullable=true) */ private $billingOrder; /** * @ORM\Column(type="string", length=255) */ private $type; /** * @ORM\Column(type="string", length=255) */ private $brand; /** * @ORM\Column(type="string", length=255) */ private $model; /** * @ORM\Column(type="string", length=255) */ private $registration; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $customer; /** * @ORM\Column(type="integer", nullable=true) */ private $monthlyPayment; public function getId(): ?int { return $this->id; } public function getBillingOrder(): ?int { return $this->billingOrder; } public function setBillingOrder(?int $billingOrder): self { $this->billingOrder = $billingOrder; return $this; } public function getType(): ?string { return $this->type; } public function setType(string $type): self { $this->type = $type; return $this; } public function getBrand(): ?string { return $this->brand; } public function setBrand(string $brand): self { $this->brand = $brand; return $this; } public function getModel(): ?string { return $this->model; } public function setModel(string $model): self { $this->model = $model; return $this; } public function getRegistration(): ?string { return $this->registration; } public function setRegistration(string $registration): self { $this->registration = $registration; return $this; } public function getMonthlyPayment(): ?int { return $this->monthlyPayment; } public function setMonthlyPayment(?int $monthlyPayment): self { $this->monthlyPayment = $monthlyPayment; return $this; } public function getCustomer(): ?string { return $this->customer; } public function setCustomer(?string $customer): self { $this->customer = $customer; return $this; }}