mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
fix indentation and add __construct() docblocks
This commit is contained in:
parent
5eb1979b04
commit
89d4b58073
3 changed files with 31 additions and 16 deletions
|
@ -38,6 +38,11 @@ class NumberHelper extends AppHelper {
|
|||
protected $_engine = null;
|
||||
|
||||
/* 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 array $settings Configuration settings for the helper
|
||||
|
|
|
@ -56,6 +56,11 @@ class TextHelper extends AppHelper {
|
|||
/**
|
||||
* 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 array $settings Settings array Settings array
|
||||
*/
|
||||
|
|
|
@ -40,6 +40,11 @@ class TimeHelper extends AppHelper {
|
|||
/**
|
||||
* 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 array $settings Settings array Settings array
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue