From 38f66e9c6d975298dafed48c3ef0790f99b36cd0 Mon Sep 17 00:00:00 2001 From: Ankit Padia Date: Mon, 22 Jan 2018 18:14:54 +0530 Subject: [PATCH] IsIndexed() @return wrong description fixed (#15538) [skip ci] --- framework/helpers/BaseArrayHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/helpers/BaseArrayHelper.php b/framework/helpers/BaseArrayHelper.php index 542894cb54..0654554e69 100644 --- a/framework/helpers/BaseArrayHelper.php +++ b/framework/helpers/BaseArrayHelper.php @@ -779,7 +779,7 @@ class BaseArrayHelper * @param array $array the array being checked * @param bool $consecutive whether the array keys must be a consecutive sequence * in order for the array to be treated as indexed. - * @return bool whether the array is associative + * @return bool whether the array is indexed */ public static function isIndexed($array, $consecutive = false) {