From 972faeb8cff79a3e834f24db31b588fe950c32fa Mon Sep 17 00:00:00 2001 From: bocharsky-bw Date: Tue, 25 Jan 2022 19:02:38 +0200 Subject: [PATCH] Get rid of property types for now --- Parser/MarkdownParser.php | 2 +- Parser/Preset/Light.php | 2 +- Parser/Preset/Medium.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Parser/MarkdownParser.php b/Parser/MarkdownParser.php index 9999cec..378786a 100644 --- a/Parser/MarkdownParser.php +++ b/Parser/MarkdownParser.php @@ -19,7 +19,7 @@ class MarkdownParser extends MarkdownExtra implements MarkdownParserInterface * * @var array Enabled features */ - protected array $features = array( + protected $features = array( 'header' => true, 'list' => true, 'horizontal_rule' => true, diff --git a/Parser/Preset/Light.php b/Parser/Preset/Light.php index ca12e7c..aac1b95 100644 --- a/Parser/Preset/Light.php +++ b/Parser/Preset/Light.php @@ -12,7 +12,7 @@ class Light extends MarkdownParser /** * @var array Enabled features */ - protected array $features = array( + protected $features = array( 'header' => true, 'list' => true, 'horizontal_rule' => true, diff --git a/Parser/Preset/Medium.php b/Parser/Preset/Medium.php index 70ddd89..3de4d1e 100644 --- a/Parser/Preset/Medium.php +++ b/Parser/Preset/Medium.php @@ -12,7 +12,7 @@ class Medium extends MarkdownParser /** * @var array Enabled features */ - protected array $features = array( + protected $features = array( 'header' => true, 'list' => true, 'horizontal_rule' => true,