mirror of
https://github.com/vrana/adminer.git
synced 2026-01-06 07:41:01 +01:00
Doc-comments: Fix type errors
This commit is contained in:
@@ -145,7 +145,7 @@ if (isset($_GET["simpledb"])) {
|
||||
return $return;
|
||||
}
|
||||
|
||||
function select(string $table, array $select, array $where, array $group, array $order = array(), $limit = 1, int $page = 0, bool $print = false) {
|
||||
function select(string $table, array $select, array $where, array $group, array $order = array(), $limit = 1, ?int $page = 0, bool $print = false) {
|
||||
$connection = connection();
|
||||
$connection->next = $_GET["next"];
|
||||
$return = parent::select($table, $select, $where, $group, $order, $limit, $page, $print);
|
||||
|
||||
Reference in New Issue
Block a user