1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-17 03:53:59 +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

@@ -22,7 +22,7 @@ function get_driver($id) {
return $drivers[$id];
}
/*abstract*/ class SqlDriver {
abstract class SqlDriver {
var $_conn;
/** Create object for performing database operations
@@ -110,7 +110,7 @@ function get_driver($id) {
* @param array of arrays with escaped columns in keys and quoted data in values
* @return bool
*/
/*abstract*/ function insertUpdate($table, $rows, $primary) {
function insertUpdate($table, $rows, $primary) {
return false;
}