From e699004dab1be5aee72de95ddb08eb661f3fb814 Mon Sep 17 00:00:00 2001 From: Brown Date: Sat, 18 Apr 2020 00:59:16 -0400 Subject: [PATCH] Improve names a little --- src/Psalm/Internal/Stubs/CoreGenericFunctions.phpstub | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Psalm/Internal/Stubs/CoreGenericFunctions.phpstub b/src/Psalm/Internal/Stubs/CoreGenericFunctions.phpstub index a8024e541..6ac682d04 100644 --- a/src/Psalm/Internal/Stubs/CoreGenericFunctions.phpstub +++ b/src/Psalm/Internal/Stubs/CoreGenericFunctions.phpstub @@ -1,13 +1,13 @@ |array + * @psalm-template TKey as array-key + * @psalm-template TArray as array * - * @param A $arr + * @param TArray $arr * @param mixed $search_value * @param bool $strict * - * @return (A is non-empty-array ? non-empty-list : list) + * @return (TArray is non-empty-array ? non-empty-list : list) * @psalm-pure */ function array_keys(array $arr, $search_value = null, bool $strict = false)