From 5a8d7e1f88bd117aaccae165255e64e6cd132c0c 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/Department.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/Department.php b/Models/Department.php index b1dee16..e5dd859 100644 --- a/Models/Department.php +++ b/Models/Department.php @@ -65,12 +65,12 @@ class Department $this->status = $status; } - public function getUnit() : int + public function getUnit() { return $this->unit; } - public function setUnit(int $unit) + public function setUnit($unit) { $this->unit = $unit; }