mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2025-01-09 17:32:40 +00:00
7 lines
161 B
PHP
7 lines
161 B
PHP
|
<?php
|
||
|
namespace JKingWeb\NewsSync\Db;
|
||
|
|
||
|
interface DriverInterface {
|
||
|
function __construct(\JKingWeb\NewsSync\Conf $conf);
|
||
|
static function driverName(): string;
|
||
|
}
|