diff options
Diffstat (limited to 'includes/user/UserArrayFromResult.php')
-rw-r--r-- | includes/user/UserArrayFromResult.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/includes/user/UserArrayFromResult.php b/includes/user/UserArrayFromResult.php index 794f33a06a26..febb61135b6f 100644 --- a/includes/user/UserArrayFromResult.php +++ b/includes/user/UserArrayFromResult.php @@ -57,9 +57,6 @@ class UserArrayFromResult extends UserArray { } } - /** - * @return int - */ public function count(): int { return $this->res->numRows(); } @@ -84,9 +81,6 @@ class UserArrayFromResult extends UserArray { $this->setCurrent( $this->res->current() ); } - /** - * @return bool - */ public function valid(): bool { return $this->current !== false; } |