From 94b5bf6768c5babb8a4b0c6ef2fb729680079f7e Mon Sep 17 00:00:00 2001 From: Christian Schiffler Date: Mon, 1 Jul 2024 15:06:50 +0200 Subject: [PATCH] Restore return type of ITranslated::searchForInLanguages() --- src/Attribute/ITranslated.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Attribute/ITranslated.php b/src/Attribute/ITranslated.php index 144f2955f..6c971059c 100644 --- a/src/Attribute/ITranslated.php +++ b/src/Attribute/ITranslated.php @@ -44,7 +44,7 @@ public function getMetaModel(); * @param list $arrLanguages Array of valid language codes that shall be searched. * (optional) If empty, all languages will be taken into account. * - * @return list the ids of matching items. + * @return list|null The list of item ids of all items matching the condition or null if all match. */ public function searchForInLanguages($strPattern, $arrLanguages = []);