From 0998148fc7917b7faeed2041db5864b24e7ec521 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 6 Mar 2020 23:10:46 +0100 Subject: [PATCH] Started implementing Orange-Management/Orange-Management#222 read is already working --- Models/NullAccount.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Models/NullAccount.php b/Models/NullAccount.php index 81faeef..8194353 100644 --- a/Models/NullAccount.php +++ b/Models/NullAccount.php @@ -33,7 +33,6 @@ final class NullAccount extends Account */ public function __construct(int $id = 0) { - $this->id = $id; - parent::__construct(); + parent::__construct($id); } }