brunetg
This commit is contained in:
parent
f1f5feb423
commit
1e37911306
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user