/**
  * Removes any indexing numbers or "empty" sorting words ("the", "a", "an", etc.) from
  * the beginning of $text.
  *
  * @param string $text The text to process.
  * @return string The sortable version of the text.
  * @access public
  */
 public function makeSortable($text)
 {
     return BedrockString::makeSortable($text);
 }