From 1e21e9c69155cf658ce9f84278a3c5d52f09ce23 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 11 Aug 2018 21:36:17 +0200 Subject: [PATCH] Fix mappers --- Models/QAAnswer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/QAAnswer.php b/Models/QAAnswer.php index 155450b..f0640c3 100644 --- a/Models/QAAnswer.php +++ b/Models/QAAnswer.php @@ -88,12 +88,12 @@ class QAAnswer implements \JsonSerializable return $this->isAccepted; } - public function getCreatedBy() : int + public function getCreatedBy() { return $this->createdBy; } - public function setCreatedBy(int $id) : void + public function setCreatedBy($id) : void { $this->createdBy = $id; }