We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a68734 commit 62b55ffCopy full SHA for 62b55ff
laravel/pluralizer.php
@@ -67,7 +67,7 @@ public function singular($value)
67
*/
68
public function plural($value, $count = 2)
69
{
70
- if ((int) $count == 1) return $value;
+ if ($count == 1) return $value;
71
72
// First we'll check the cache of inflected values. We cache each word that
73
// is inflected so we don't have to spin through the regular expressions
0 commit comments