prop names

This commit is contained in:
2022-05-24 10:06:04 +02:00
parent b1d6490d24
commit 19a65a8ed3
8 changed files with 40 additions and 22 deletions

View File

@ -14,7 +14,7 @@ trait MerDT
// private $id;
#[ORM\Column(type: 'string', length: 255)]
private $serviceId;
private $service_id;
// public function getId(): ?int
// {
@ -23,12 +23,12 @@ trait MerDT
public function getServiceId(): ?string
{
return $this->serviceId;
return $this->service_id;
}
public function setServiceId(string $serviceId): self
{
$this->serviceId = $serviceId;
$this->service_id = $serviceId;
return $this;
}