mirror of
https://github.com/vrana/adminer.git
synced 2026-05-07 13:45:30 +02:00
Doc-comments: Fix type errors
This commit is contained in:
@@ -124,7 +124,7 @@ if (isset($_GET["elastic"])) {
|
||||
);
|
||||
}
|
||||
|
||||
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) {
|
||||
$data = array();
|
||||
if ($select != array("*")) {
|
||||
$data["fields"] = array_values($select);
|
||||
|
||||
Reference in New Issue
Block a user