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

@ -16,7 +16,7 @@ class MerParaDT extends MerService
// private $id;
#[ORM\Column(type: 'string', length: 255)]
private $apiKey;
private $api_key;
// public function getId(): ?int
// {
@ -25,12 +25,12 @@ class MerParaDT extends MerService
public function getApiKey(): ?string
{
return $this->apiKey;
return $this->api_key;
}
public function setApiKey(string $apiKey): self
{
$this->apiKey = $apiKey;
$this->api_key = $apiKey;
return $this;
}