public function __construct(Server $server)
 {
     parent::__construct();
     // Set the paths
     $this->migrationsPath = app_path() . "/database/migrations";
     $this->seedsPath = app_path() . "/database/seeds";
     $this->server = $server;
 }
 public function __construct(DbExportHandler $handler)
 {
     parent::__construct();
     $this->handler = $handler;
 }