fix minor construct bugs

This commit is contained in:
Dennis Eichhorn 2020-03-05 21:01:09 +01:00
parent b3c041b2cf
commit 85993f8950
4 changed files with 4 additions and 0 deletions

View File

@ -34,5 +34,6 @@ final class NullAccount extends Account
public function __construct(int $id = 0) public function __construct(int $id = 0)
{ {
$this->id = $id; $this->id = $id;
parent::__construct();
} }
} }

View File

@ -34,5 +34,6 @@ final class NullAccountPermission extends AccountPermission
public function __construct(int $id = 0) public function __construct(int $id = 0)
{ {
$this->id = $id; $this->id = $id;
parent::__construct();
} }
} }

View File

@ -34,5 +34,6 @@ final class NullGroup extends Group
public function __construct(int $id = 0) public function __construct(int $id = 0)
{ {
$this->id = $id; $this->id = $id;
parent::__construct();
} }
} }

View File

@ -34,5 +34,6 @@ final class NullGroupPermission extends GroupPermission
public function __construct(int $id = 0) public function __construct(int $id = 0)
{ {
$this->id = $id; $this->id = $id;
parent::__construct();
} }
} }