Skip to content

Commit

Permalink
added function doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ritesh-pandey committed Sep 1, 2015
1 parent 8095b7c commit b046ff8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/View/Helper/NumberHelper.php
Expand Up @@ -231,6 +231,12 @@ public function implementedEvents()
return [];
}

/**
* Formats a number into locale specific ordinal suffix.
*
* @param integer|float $value An integer
* @return string formatted number
*/
public function ordinal($value)
{
return $this->_engine->ordinal($value);
Expand Down

0 comments on commit b046ff8

Please sign in to comment.