From c58a1b46b6ce0360ef3bc9dec98be497bae0fb06 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Sun, 14 Apr 2019 18:54:04 +0200 Subject: [PATCH] revert static deletions --- src/Database/DBA.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Database/DBA.php b/src/Database/DBA.php index 34b11e4660..c145b456d7 100644 --- a/src/Database/DBA.php +++ b/src/Database/DBA.php @@ -283,7 +283,7 @@ class DBA * * @return boolean Was the command executed successfully? */ - public function rollback() + public static function rollback() { return self::$dba->rollback(); } @@ -438,7 +438,7 @@ class DBA * @param bool $do_close * @return array Data array */ - public function toArray($stmt, $do_close = true) + public static function toArray($stmt, $do_close = true) { return self::$dba->toArray($stmt, $do_close); }