diff --git a/src/Entity/Fault.php b/src/Entity/Fault.php index 7842413..6b28302 100644 --- a/src/Entity/Fault.php +++ b/src/Entity/Fault.php @@ -16,6 +16,9 @@ class Fault #[ORM\Column(length: 255)] private ?string $Wording = null; + #[ORM\Column(length: 255)] + private ?string $Description = null; + public function getId(): ?int { return $this->id; @@ -32,4 +35,16 @@ class Fault return $this; } + + public function getDescription(): ?string + { + return $this->Description; + } + + public function setDescription(string $Description): static + { + $this->Description = $Description; + + return $this; + } } diff --git a/src/Entity/Vehicle.php b/src/Entity/Vehicle.php index 6f6a178..8b2f4ab 100644 --- a/src/Entity/Vehicle.php +++ b/src/Entity/Vehicle.php @@ -19,6 +19,9 @@ class Vehicle #[ORM\Column(length: 255)] private ?string $Brand = null; + #[ORM\Column(length: 255)] + private ?string $Model = null; + public function getId(): ?int { return $this->id; @@ -47,4 +50,14 @@ class Vehicle return $this; } + + public function getModel(): ?string + { + return $this->Model; + } + + public function setModel(?string $Model): void + { + $this->Model = $Model; + } }