/**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     // Since the ExtDirect provider is not created using the
     // object manager, no dependency injection is available here.
     $this->forumRepository = $this->objectManager->get('Mittwald\\Typo3Forum\\Domain\\Repository\\Forum\\ForumRepository');
 }
 public function __construct($filename) {
     parent::__construct();
     $this->filename = $filename;
 }
 public function __construct($buffer) {
     parent::__construct();
     $this->setBuffer($buffer);
 }