This commit is contained in:
Giovanny BRUNET 2024-12-20 11:59:02 +01:00
parent f1f5feb423
commit 1e37911306
2 changed files with 28 additions and 0 deletions

View File

@ -16,6 +16,9 @@ class Fault
#[ORM\Column(length: 255)] #[ORM\Column(length: 255)]
private ?string $Wording = null; private ?string $Wording = null;
#[ORM\Column(length: 255)]
private ?string $Description = null;
public function getId(): ?int public function getId(): ?int
{ {
return $this->id; return $this->id;
@ -32,4 +35,16 @@ class Fault
return $this; return $this;
} }
public function getDescription(): ?string
{
return $this->Description;
}
public function setDescription(string $Description): static
{
$this->Description = $Description;
return $this;
}
} }

View File

@ -19,6 +19,9 @@ class Vehicle
#[ORM\Column(length: 255)] #[ORM\Column(length: 255)]
private ?string $Brand = null; private ?string $Brand = null;
#[ORM\Column(length: 255)]
private ?string $Model = null;
public function getId(): ?int public function getId(): ?int
{ {
return $this->id; return $this->id;
@ -47,4 +50,14 @@ class Vehicle
return $this; return $this;
} }
public function getModel(): ?string
{
return $this->Model;
}
public function setModel(?string $Model): void
{
$this->Model = $Model;
}
} }