From ff2431a512e749dd9f75104800b025ebb0f34764 Mon Sep 17 00:00:00 2001 From: Ryan Rud Date: Fri, 30 Nov 2018 20:58:43 -0600 Subject: [PATCH] fix type for $value in DocBlock `$value` is supposed to be a string, not an int, according to [`NumberFormatter::setTextAttribute()` documentation](https://secure.php.net/manual/en/numberformatter.settextattribute.php) --- src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php b/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php index b598d49d3e..d726d6436e 100644 --- a/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php +++ b/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php @@ -639,7 +639,7 @@ class NumberFormatter * Not supported. Set a text attribute. * * @param int $attr An attribute specifier, one of the text attribute constants - * @param int $value The attribute value + * @param string $value The attribute value * * @return bool true on success or false on failure *