Doc-comments: Fix type errors

This commit is contained in:
Jakub Vrana
2025-03-28 13:15:14 +01:00
parent dc38a7ded3
commit 46f6a96c95
22 changed files with 60 additions and 64 deletions

View File

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