From f4b3333519ab4afc359b89f435a03b3b2ad95a59 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 5 Aug 2022 18:29:51 +0000 Subject: [PATCH] Merge pull request #349 from hydephp/code-cleanup Add missing parent constructor call https://github.com/hydephp/develop/commit/a6182ead8d16a2adbcdc481fa0459735dd570ade --- src/Contracts/AbstractMarkdownPage.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Contracts/AbstractMarkdownPage.php b/src/Contracts/AbstractMarkdownPage.php index e086c2e9..ef35c790 100644 --- a/src/Contracts/AbstractMarkdownPage.php +++ b/src/Contracts/AbstractMarkdownPage.php @@ -44,6 +44,8 @@ public function __construct(string $identifier = '', ?FrontMatter $matter = null $this->identifier = $identifier; $this->matter = $matter ?? new FrontMatter(); $this->markdown = $markdown ?? new Markdown(); + + parent::__construct($this->identifier, $this->matter); } /** @inheritDoc */