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)
This commit is contained in:
Ryan Rud 2018-11-30 20:58:43 -06:00 committed by Nicolas Grekas
parent 6c3c47e550
commit ff2431a512
1 changed files with 1 additions and 1 deletions

View File

@ -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
*