diff --git a/Models/NullReport.php b/Models/NullReport.php index 4030682..f1c9e37 100644 --- a/Models/NullReport.php +++ b/Models/NullReport.php @@ -34,5 +34,6 @@ final class NullReport extends Report public function __construct(int $id = 0) { $this->id = $id; + parent::__construct(); } } diff --git a/Models/NullTemplate.php b/Models/NullTemplate.php index 4b789f7..146e9d6 100644 --- a/Models/NullTemplate.php +++ b/Models/NullTemplate.php @@ -34,5 +34,6 @@ final class NullTemplate extends Template public function __construct(int $id = 0) { $this->id = $id; + parent::__construct(); } }