Exemplo n.º 1
0
 /**
  * @param string $word The word to pluralize
  * @return string The pluralized word
  * @author Christopher Hlubek
  */
 public function pluralize($word)
 {
     return \Sho_Inflect::pluralize($word);
 }
Exemplo n.º 2
0
 /**
  * @param string $word The word to singularize
  * @return string The singularized word
  * @author Sebastian Kurfürst <*****@*****.**>
  */
 public static function singularize($word)
 {
     return \Sho_Inflect::singularize($word);
 }