From eab8ce4bff5766aef71e462dffa35c87d0fb53d7 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 5 Jul 2017 16:56:26 +0200 Subject: [PATCH] Fixes belongs to bugs --- Models/EditorDoc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/EditorDoc.php b/Models/EditorDoc.php index b4110f5..5a4e2f3 100644 --- a/Models/EditorDoc.php +++ b/Models/EditorDoc.php @@ -175,7 +175,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable * @since 1.0.0 * @author Dennis Eichhorn */ - public function getCreatedBy() : int + public function getCreatedBy() { return $this->createdBy; } @@ -186,7 +186,7 @@ class EditorDoc implements ArrayableInterface, \JsonSerializable * @since 1.0.0 * @author Dennis Eichhorn */ - public function setCreatedBy(int $id) + public function setCreatedBy($id) { $this->createdBy = $id; }