From f3cca4b7c7b164b94aeae88672d99650210f1098 Mon Sep 17 00:00:00 2001 From: Vasil Rangelov Date: Sun, 12 Aug 2012 23:53:31 +0300 Subject: [PATCH] Ensured key consistency. --- src/phpDocumentor/Reflection/DocBlock/Tag/ParamTag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/ParamTag.php b/src/phpDocumentor/Reflection/DocBlock/Tag/ParamTag.php index eba1b97..dc61e8b 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/ParamTag.php +++ b/src/phpDocumentor/Reflection/DocBlock/Tag/ParamTag.php @@ -69,7 +69,7 @@ class ParamTag extends Tag : trim($type); } - return array_unique($types, SORT_NUMERIC); + return array_values(array_unique($types, SORT_REGULAR)); } /**