From d49749b13fe598ddec97ba69771904632d3e44b2 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 5 Mar 2020 21:01:09 +0100 Subject: [PATCH] fix minor construct bugs --- Models/NullDepartment.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Models/NullDepartment.php b/Models/NullDepartment.php index d1f6907..b20ae8a 100644 --- a/Models/NullDepartment.php +++ b/Models/NullDepartment.php @@ -34,5 +34,6 @@ final class NullDepartment extends Department public function __construct(int $id = 0) { $this->id = $id; + parent::__construct(); } }