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
1 changed files with 1 additions and 0 deletions

View File

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