public function __construct(DemoInstaller $installer, $table)
 {
     parent::__construct($installer);
     $this->table = $table;
 }
 public function __construct(DemoInstaller $installer, $filename)
 {
     parent::__construct($installer);
     $this->filename = $filename;
 }
 public function __construct(DemoInstaller $installer, $table, $rowCount)
 {
     parent::__construct($installer);
     $this->table = $table;
     $this->rowCount = $rowCount;
 }