revert static deletions

This commit is contained in:
Philipp Holzer 2019-04-14 18:54:04 +02:00
parent 79f746d014
commit c58a1b46b6
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}