We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d37d4b commit c0c6592Copy full SHA for c0c6592
1 file changed
src/Syntax/SteamApi/Containers/BaseContainer.php
@@ -63,8 +63,8 @@ protected function getImageForAvatar($image)
63
*/
64
protected function pluralize($word, $count)
65
{
66
- if ($count === 1) {
67
- return $word;
+ if ((int) $count === 1) {
+ return $word .' ';
68
}
69
70
return $word .'s ';
0 commit comments