Skip to content

Commit

Permalink
Correct doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
AD7six committed Feb 8, 2015
1 parent 5273dae commit 55cbcd5
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/Utility/Inflector.php
Expand Up @@ -625,7 +625,7 @@ public static function dasherize($string)
* (Underscores are replaced by spaces and capitalized following words.)
*
* @param string $string String to be made more readable
* @param string $replacement
* @param string $replacement the character to replace with a space
* @return string Human-readable string
* @link http://book.cakephp.org/3.0/en/core-libraries/inflector.html#creating-human-readable-forms
*/
Expand All @@ -644,12 +644,11 @@ public static function humanize($string, $replacement = '_')
}

/**
* Returns the given CamelCasedWordGroup as lower cased words, separated by the replacement
* character
* Takes the input string, and based on the replacement character converts to a normalized string
*
* @param string $string
* @param string $replacement
* @return string normalized stringd
* @param string $string String to normalize
* @param string $replacement the character to use as a delimiter
* @return string normalized string
*/
public static function normalize($string, $replacement = '_')
{
Expand Down

0 comments on commit 55cbcd5

Please sign in to comment.