From 3de130c2da3b93a3404f264e92d7b65354de3548 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Fri, 7 Feb 2014 23:31:49 +0200 Subject: [ci skip] Add return types to helper docs (+ some other formatting) --- user_guide_src/source/helpers/inflector_helper.rst | 23 +++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'user_guide_src/source/helpers/inflector_helper.rst') diff --git a/user_guide_src/source/helpers/inflector_helper.rst b/user_guide_src/source/helpers/inflector_helper.rst index 717ecc678..d0cb17c18 100644 --- a/user_guide_src/source/helpers/inflector_helper.rst +++ b/user_guide_src/source/helpers/inflector_helper.rst @@ -28,50 +28,51 @@ The following functions are available: .. function:: singular($str) :param string $str: Input string - :returns: string + :returns: A singular word + :rtype: string Changes a plural word to singular. Example:: echo singular('dogs'); // Prints 'dog' - .. function:: plural($str) :param string $str: Input string - :returns: string + :returns: A plular word + :rtype: string Changes a singular word to plural. Example:: echo plural('dog'); // Prints 'dogs' - .. function:: camelize($str) :param string $str: Input string - :returns: string + :returns: Camelized string + :rtype: string Changes a string of words separated by spaces or underscores to camel case. Example:: echo camelize('my_dog_spot'); // Prints 'myDogSpot' - .. function:: underscore($str) :param string $str: Input string - :returns: string + :returns: String containing underscores instead of spaces + :rtype: string Takes multiple words separated by spaces and underscores them. Example:: echo underscore('my dog spot'); // Prints 'my_dog_spot' - .. function:: humanize($str[, $separator = '_']) :param string $str: Input string :param string $separator: Input separator - :returns: string + :returns: Humanized string + :rtype: string Takes multiple words separated by underscores and adds spaces between them. Each word is capitalized. @@ -84,11 +85,11 @@ The following functions are available: echo humanize('my-dog-spot', '-'); // Prints 'My Dog Spot' - .. function:: is_countable($word) :param string $word: Input string - :returns: bool + :returns: TRUE if the word is countable or FALSE if not + :rtype: bool Checks if the given word has a plural version. Example:: -- cgit v1.2.3-24-g4f1b