mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
15 lines
No EOL
228 B
PHP
15 lines
No EOL
228 B
PHP
<?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() {
|
|
|
|
}
|
|
} |