Skip to content

Commit

Permalink
Correct doc blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Sep 21, 2014
1 parent 7e22970 commit e343d46
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/View/Helper.php
Expand Up @@ -103,14 +103,14 @@ class Helper implements EventListener {
/**
* The View instance this helper is attached to
*
* @var View
* @var \Cake\View\View
*/
protected $_View;

/**
* Default Constructor
*
* @param View $View The View this helper is being attached to.
* @param \Cake\View\View $View The View this helper is being attached to.
* @param array $config Configuration settings for the helper.
*/
public function __construct(View $View, array $config = array()) {
Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/HtmlHelper.php
Expand Up @@ -133,7 +133,7 @@ class HtmlHelper extends Helper {
*
* Using the `templates` option you can redefine the tag HtmlHelper will use.
*
* @param View $View The View this helper is being attached to.
* @param \Cake\View\View $View The View this helper is being attached to.
* @param array $config Configuration settings for the helper.
*/
public function __construct(View $View, array $config = array()) {
Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/NumberHelper.php
Expand Up @@ -53,7 +53,7 @@ class NumberHelper extends Helper {
* - `engine` Class name to use to replace Cake\I18n\Number functionality
* The class needs to be placed in the `Utility` directory.
*
* @param View $View The View this helper is being attached to.
* @param \Cake\View\View $View The View this helper is being attached to.
* @param array $config Configuration settings for the helper
* @throws \Cake\Core\Exception\Exception When the engine class could not be found.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/TextHelper.php
Expand Up @@ -69,7 +69,7 @@ class TextHelper extends Helper {
* - `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 \Cake\View\View $View the view object the helper is attached to.
* @param array $config Settings array Settings array
* @throws \Cake\Core\Exception\Exception when the engine class could not be found.
*/
Expand Down

0 comments on commit e343d46

Please sign in to comment.