diff --git a/src/View/Helper.php b/src/View/Helper.php index f7bab9f9a6f..e700d6dbf6c 100644 --- a/src/View/Helper.php +++ b/src/View/Helper.php @@ -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()) { diff --git a/src/View/Helper/HtmlHelper.php b/src/View/Helper/HtmlHelper.php index 050ce391cfd..96f2ad33822 100644 --- a/src/View/Helper/HtmlHelper.php +++ b/src/View/Helper/HtmlHelper.php @@ -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()) { diff --git a/src/View/Helper/NumberHelper.php b/src/View/Helper/NumberHelper.php index 661dc8f4115..8bc76380059 100644 --- a/src/View/Helper/NumberHelper.php +++ b/src/View/Helper/NumberHelper.php @@ -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. */ diff --git a/src/View/Helper/TextHelper.php b/src/View/Helper/TextHelper.php index 53c54d3a0c6..ef5675c7e31 100644 --- a/src/View/Helper/TextHelper.php +++ b/src/View/Helper/TextHelper.php @@ -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. */