From aa047a9129dafc08f6ef17b9126ffb2c932cef43 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Wed, 20 Nov 2024 15:13:47 +0100 Subject: [PATCH] Fix the return type declaration See https://www.woltlab.com/community/thread/309479-falscher-phpdocs-kommentar-im-ilookuppagehandler/ --- .../files/lib/system/page/handler/ILookupPageHandler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/page/handler/ILookupPageHandler.class.php b/wcfsetup/install/files/lib/system/page/handler/ILookupPageHandler.class.php index 697f21cf2a..c241b2d978 100644 --- a/wcfsetup/install/files/lib/system/page/handler/ILookupPageHandler.class.php +++ b/wcfsetup/install/files/lib/system/page/handler/ILookupPageHandler.class.php @@ -34,7 +34,7 @@ interface ILookupPageHandler extends IMenuPageHandler * an `objectID => title` relation. * * @param string $searchString search string - * @return string[] + * @return string[][] */ public function lookup($searchString); } -- 2.20.1