Arsse/vendor/JKingWeb/NewsSync/Database.php

15 lines
228 B
PHP
Raw Normal View History

2016-10-02 17:07:17 -04:00
<?php
namespace JKingWeb\NewsSync;
class Database {
protected $drv;
public function __construct(Conf $conf) {
$driver = $conf->dbClass;
$this->drv = new $driver($conf);
}
static public function listDrivers() {
}
}