From 9607ed6e2ce858e7bebc48967c5e875bdff80f0a Mon Sep 17 00:00:00 2001 From: Andrey Tsarev Date: Thu, 29 Jul 2021 14:32:50 +0300 Subject: [PATCH] fix: PHPDoc typings on Zend_Db_Table_Rowset_Abstract::current [Close #157] --- library/Zend/Db/Table/Rowset/Abstract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Zend/Db/Table/Rowset/Abstract.php b/library/Zend/Db/Table/Rowset/Abstract.php index 9dc095dbd5..f93df2ab5b 100644 --- a/library/Zend/Db/Table/Rowset/Abstract.php +++ b/library/Zend/Db/Table/Rowset/Abstract.php @@ -238,7 +238,7 @@ public function rewind() * Similar to the current() function for arrays in PHP * Required by interface Iterator. * - * @return Zend_Db_Table_Row_Abstract current element from the collection + * @return Zend_Db_Table_Row_Abstract|null current element from the collection */ public function current() {