Browse Source

Don't cast in pluralizer.

Taylor Otwell 12 years ago
parent
commit
62b55ff7a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/pluralizer.php

+ 1 - 1
laravel/pluralizer.php

@@ -67,7 +67,7 @@ class Pluralizer {
 	 */
 	public function plural($value, $count = 2)
 	{
-		if ((int) $count == 1) return $value;
+		if ($count == 1) return $value;
 
 		// First we'll check the cache of inflected values. We cache each word that
 		// is inflected so we don't have to spin through the regular expressions