Fix mappers

This commit is contained in:
Dennis Eichhorn 2018-08-11 21:36:17 +02:00
parent 5c7f8fe932
commit 1e21e9c691

View File

@ -88,12 +88,12 @@ class QAAnswer implements \JsonSerializable
return $this->isAccepted; return $this->isAccepted;
} }
public function getCreatedBy() : int public function getCreatedBy()
{ {
return $this->createdBy; return $this->createdBy;
} }
public function setCreatedBy(int $id) : void public function setCreatedBy($id) : void
{ {
$this->createdBy = $id; $this->createdBy = $id;
} }