fix indentation and add __construct() docblocks

This commit is contained in:
Rachman Chavik 2012-02-14 23:26:55 +07:00
parent 5eb1979b04
commit 89d4b58073
3 changed files with 31 additions and 16 deletions

View file

@ -38,6 +38,11 @@ class NumberHelper extends AppHelper {
protected $_engine = null; protected $_engine = null;
/* Default Constructor /* Default Constructor
*
* ### Settings:
*
* - `engine` Class name to use to replace CakeNumber functionality
* The class needs to be placed in the `Utility` directory.
* *
* @param View $View The View this helper is being attached to. * @param View $View The View this helper is being attached to.
* @param array $settings Configuration settings for the helper * @param array $settings Configuration settings for the helper

View file

@ -56,6 +56,11 @@ class TextHelper extends AppHelper {
/** /**
* Constructor * Constructor
* *
* ### Settings:
*
* - `engine` Class name to use to replace String functionality.
* The class needs to be placed in the `Utility` directory.
*
* @param View $View the view object the helper is attached to. * @param View $View the view object the helper is attached to.
* @param array $settings Settings array Settings array * @param array $settings Settings array Settings array
*/ */

View file

@ -40,6 +40,11 @@ class TimeHelper extends AppHelper {
/** /**
* Constructor * Constructor
* *
* ### Settings:
*
* - `engine` Class name to use to replace CakeTime functionality
* The class needs to be placed in the `Utility` directory.
*
* @param View $View the view object the helper is attached to. * @param View $View the view object the helper is attached to.
* @param array $settings Settings array Settings array * @param array $settings Settings array Settings array
*/ */