mirror of
https://github.com/vrana/adminer.git
synced 2026-02-26 08:31:32 +01:00
Doc-comments: Fix type errors
This commit is contained in:
@@ -76,7 +76,7 @@ if (isset($_GET["simpledb"])) {
|
||||
return (is_object($element) && $element['encoding'] == 'base64' ? base64_decode($element) : (string) $element);
|
||||
}
|
||||
|
||||
function fetch_assoc(): array {
|
||||
function fetch_assoc() {
|
||||
$row = current($this->rows);
|
||||
if (!$row) {
|
||||
return $row;
|
||||
@@ -89,7 +89,7 @@ if (isset($_GET["simpledb"])) {
|
||||
return $return;
|
||||
}
|
||||
|
||||
function fetch_row(): array {
|
||||
function fetch_row() {
|
||||
$return = $this->fetch_assoc();
|
||||
if (!$return) {
|
||||
return $return;
|
||||
|
||||
Reference in New Issue
Block a user