Get rid of property types for now

This commit is contained in:
bocharsky-bw 2022-01-25 19:02:38 +02:00
parent 547f137ea8
commit 972faeb8cf
3 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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,

View file

@ -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,