From eab6d2c450989094243d5a2bd31d8f4ffd89289a Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 27 Sep 2023 02:29:44 +0000 Subject: [PATCH] fix tests --- Models/Department.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/Department.php b/Models/Department.php index e5c6eac..07c9f81 100755 --- a/Models/Department.php +++ b/Models/Department.php @@ -89,8 +89,8 @@ class Department implements \JsonSerializable */ public function __construct(string $name = '') { - $this->name = $name; - $this->unit = new NullUnit(); + $this->name = $name; + $this->unit = new NullUnit(); } /**