1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 07:36:44 +02:00

Mark abstract classes

This commit is contained in:
Jakub Vrana
2025-03-05 14:31:53 +01:00
parent f468c095ae
commit f820fa1c26
3 changed files with 8 additions and 4 deletions

View File

@@ -88,6 +88,10 @@ if (isset($_GET["sqlite"])) {
function __construct($filename) {
$this->dsn(DRIVER . ":$filename", "", "");
}
function select_db($db) {
return false;
}
}
}