mirror of
https://github.com/vrana/adminer.git
synced 2025-08-07 07:06:45 +02:00
Fix type of select_db()
This commit is contained in:
@@ -25,8 +25,10 @@ abstract class SqlDb {
|
||||
*/
|
||||
abstract function quote(string $string): string;
|
||||
|
||||
/** Select database */
|
||||
abstract function select_db(string $database): bool;
|
||||
/** Select database
|
||||
* @return bool boolish
|
||||
*/
|
||||
abstract function select_db(string $database);
|
||||
|
||||
/** Send query
|
||||
* @return Result|bool
|
||||
|
Reference in New Issue
Block a user