From 038087dba010b364c34fa72441c449d8b1d14bfa Mon Sep 17 00:00:00 2001 From: Basil Date: Mon, 9 Dec 2019 20:26:44 +0100 Subject: [PATCH] fix since info --- core/helpers/ArrayHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/helpers/ArrayHelper.php b/core/helpers/ArrayHelper.php index 5605fd066..49ea96268 100644 --- a/core/helpers/ArrayHelper.php +++ b/core/helpers/ArrayHelper.php @@ -152,7 +152,7 @@ public static function typeCast(array $array) * @param array $array The multidimensional array keys. * @param string $searchText The text you where search inside the rows. * @param boolean $sensitive Whether to use strict sensitive search (true) or case insenstivie search (false). - * @param array $keys A list of array keys which should be taken to search in, if empty or not provided it will lookup all array keys by default. {@since 2.0.14} + * @param array $keys A list of array keys which should be taken to search in, if empty or not provided it will lookup all array keys by default. {@since 1.0.24} * @return array The modified array depending on the search result hits. */ public static function search(array $array, $searchText, $sensitive = false, array $keys = [])