Skip to content

Commit

Permalink
Merge pull request #349 from hydephp/code-cleanup
Browse files Browse the repository at this point in the history
Add missing parent constructor call hydephp/develop@a6182ea
  • Loading branch information
github-actions committed Aug 5, 2022
1 parent 7280f86 commit f4b3333
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Contracts/AbstractMarkdownPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit f4b3333

Please sign in to comment.