Browse Source

fixed casing issues in inflection.

Taylor Otwell 13 years ago
parent
commit
363632165c
1 changed files with 8 additions and 2 deletions
  1. 8 2
      laravel/str.php

+ 8 - 2
laravel/str.php

@@ -133,7 +133,11 @@ class Str {
 	 */
 	public static function singular($value)
 	{
-		return array_get(array_flip(Config::get('strings.inflection')), strtolower($value), $value);
+		$inflection = Config::get('strings.inflection');
+
+		$singular = array_get(array_flip($inflection), strtolower($value), $value);
+
+		return (ctype_upper($value[0])) ? static::title($singular) : $singular;
 	}
 
 	/**
@@ -156,7 +160,9 @@ class Str {
 	{
 		if ((int) $count == 1) return $value;
 
-		return array_get(Config::get('strings.inflection'), strtolower($value), $value);
+		$plural = array_get(Config::get('strings.inflection'), strtolower($value), $value);
+
+		return (ctype_upper($value[0])) ? static::title($plural) : $plural;
 	}
 
 	/**