fix minor construct bugs

This commit is contained in:
Dennis Eichhorn 2020-03-05 21:01:09 +01:00
parent c9fc4568ad
commit 8f1c37e0da
2 changed files with 2 additions and 0 deletions

View File

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

View File

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