From d4e5be74d9a9d50521fc317f28c05cb2d4de1ed2 Mon Sep 17 00:00:00 2001 From: Josh S Date: Thu, 10 Oct 2024 08:28:31 -0500 Subject: [PATCH] update php doc arr::exists to show it also accepts float (#53097) --- src/Illuminate/Collections/Arr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Collections/Arr.php b/src/Illuminate/Collections/Arr.php index cddcde2ecc9f..ab0b5183d10d 100644 --- a/src/Illuminate/Collections/Arr.php +++ b/src/Illuminate/Collections/Arr.php @@ -158,7 +158,7 @@ public static function except($array, $keys) * Determine if the given key exists in the provided array. * * @param \ArrayAccess|array $array - * @param string|int $key + * @param string|int|float $key * @return bool */ public static function exists($array, $key)