fix minor construct bugs

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

View File

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

View File

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