Browse Source

Refactoring the inflector.

Taylor Otwell 13 years ago
parent
commit
2e482d31e4
1 changed files with 4 additions and 16 deletions
  1. 4 16
      system/inflector.php

+ 4 - 16
system/inflector.php

@@ -121,15 +121,9 @@ class Inflector {
 	 */
 	 */
 	public static function plural($value)
 	public static function plural($value)
 	{
 	{
-        if (array_key_exists($value, static::$plural_cache))
-        {
-           return static::$plural_cache[$value];
-        }
+        if (array_key_exists($value, static::$plural_cache)) return static::$plural_cache[$value];
 
 
-        if (in_array(strtolower($value), static::$uncountable))
-        {
-        	return static::$plural_cache[$value] = $value;
-        }
+        if (in_array(strtolower($value), static::$uncountable)) return static::$plural_cache[$value] = $value;
 
 
         foreach (static::$irregular as $pattern => $irregular)
         foreach (static::$irregular as $pattern => $irregular)
         {
         {
@@ -160,15 +154,9 @@ class Inflector {
 	 */
 	 */
 	public static function singular($value)
 	public static function singular($value)
 	{
 	{
-        if (array_key_exists($value, static::$singular_cache))
-        {
-           return static::$singular_cache[$value];
-        }
+        if (array_key_exists($value, static::$singular_cache)) return static::$singular_cache[$value];
 
 
-        if (in_array(strtolower($value), static::$uncountable))
-        {
-        	return static::$singular_cache[$value] = $value;
-        }
+        if (in_array(strtolower($value), static::$uncountable)) return static::$singular_cache[$value] = $value;
 
 
         foreach (static::$irregular as $irregular => $pattern)
         foreach (static::$irregular as $irregular => $pattern)
         {
         {