Change scope of private inflector methods to protected.
This commit is contained in:
parent
55379a0adb
commit
eab5e24883
|
@ -7,14 +7,14 @@ class Inflector {
|
|||
*
|
||||
* @var array
|
||||
*/
|
||||
private static $singular_cache = array();
|
||||
protected static $singular_cache = array();
|
||||
|
||||
/**
|
||||
* The words that have been converted to plural.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private static $plural_cache = array();
|
||||
protected static $plural_cache = array();
|
||||
|
||||
/**
|
||||
* Plural word forms.
|
||||
|
@ -171,7 +171,7 @@ public static function singular($value)
|
|||
* @param array $source
|
||||
* @return string
|
||||
*/
|
||||
private static function inflect($value, $cache, $irregular, $source)
|
||||
protected static function inflect($value, $cache, $irregular, $source)
|
||||
{
|
||||
if (array_key_exists($value, $cache))
|
||||
{
|
||||
|
@ -202,4 +202,4 @@ private static function inflect($value, $cache, $irregular, $source)
|
|||
return $value;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue