From 823f0d8d8900277be5a965e44fd8cd2b1b2987e0 Mon Sep 17 00:00:00 2001 From: Tac Tacelosky Date: Tue, 30 Nov 2021 07:49:20 -0500 Subject: [PATCH] should not return a result in a constructor --- Parser/Preset/Min.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parser/Preset/Min.php b/Parser/Preset/Min.php index 2a4646b..50f774f 100644 --- a/Parser/Preset/Min.php +++ b/Parser/Preset/Min.php @@ -15,7 +15,7 @@ class Min extends MarkdownParser $this->features[$name] = false; } - return parent::__construct($features); + parent::__construct($features); } }