mirror of
https://github.com/vrana/adminer.git
synced 2026-06-16 14:42:43 +02:00
Doc-comments: Fix type errors
This commit is contained in:
@@ -101,11 +101,11 @@ if (isset($_GET["pgsql"])) {
|
||||
$this->num_rows = pg_num_rows($result);
|
||||
}
|
||||
|
||||
function fetch_assoc(): array {
|
||||
function fetch_assoc() {
|
||||
return pg_fetch_assoc($this->result);
|
||||
}
|
||||
|
||||
function fetch_row(): array {
|
||||
function fetch_row() {
|
||||
return pg_fetch_row($this->result);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user