pluralize() public method

public pluralize ( string $word ) : string
$word string The word to pluralize
return string The pluralized word
 /**
  * Pluralize a word
  *
  * @return string The pluralized string
  */
 public function render()
 {
     $content = $this->renderChildren();
     return $this->inflector->pluralize($content);
 }