Allow extensions for TextParser

* Call Object::__construct to make it extendable
* Resolves #5685
This commit is contained in:
Robbie Averill 2016-06-13 12:43:25 +12:00
parent 65afd6c354
commit df3680295c

View File

@ -35,6 +35,7 @@ abstract class TextParser extends Object {
*/ */
public function __construct($content = "") { public function __construct($content = "") {
$this->content = $content; $this->content = $content;
parent::__construct();
} }
/** /**