Skip to content

Commit

Permalink
Use FQCN for property annotations.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Dec 19, 2016
1 parent b2703a7 commit 814b51c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/View/Helper/FormHelper.php
Expand Up @@ -40,8 +40,8 @@
*
* Automatic generation of HTML FORMs from given data.
*
* @property HtmlHelper $Html
* @property UrlHelper $Url
* @property \Cake\View\Helper\HtmlHelper $Html
* @property \Cake\View\Helper\UrlHelper $Url
* @link http://book.cakephp.org/3.0/en/views/helpers/form.html
*/
class FormHelper extends Helper
Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/HtmlHelper.php
Expand Up @@ -25,7 +25,7 @@
*
* HtmlHelper encloses all methods needed while working with HTML pages.
*
* @property UrlHelper $Url
* @property \Cake\View\Helper\UrlHelper $Url
* @link http://book.cakephp.org/3.0/en/views/helpers/html.html
*/
class HtmlHelper extends Helper
Expand Down
6 changes: 3 additions & 3 deletions src/View/Helper/PaginatorHelper.php
Expand Up @@ -25,9 +25,9 @@
*
* PaginationHelper encloses all methods needed when working with pagination.
*
* @property UrlHelper $Url
* @property NumberHelper $Number
* @property HtmlHelper $Html
* @property \Cake\View\Helper\UrlHelper $Url
* @property \Cake\View\Helper\NumberHelper $Number
* @property \Cake\View\Helper\HtmlHelper $Html
* @link http://book.cakephp.org/3.0/en/views/helpers/paginator.html
*/
class PaginatorHelper extends Helper
Expand Down
4 changes: 2 additions & 2 deletions src/View/Helper/RssHelper.php
Expand Up @@ -20,8 +20,8 @@
/**
* RSS Helper class for easy output RSS structures.
*
* @property UrlHelper $Url
* @property TimeHelper $Time
* @property \Cake\View\Helper\UrlHelper $Url
* @property \Cake\View\Helper\TimeHelper $Time
* @link http://book.cakephp.org/3.0/en/views/helpers/rss.html
*/
class RssHelper extends Helper
Expand Down
2 changes: 1 addition & 1 deletion src/View/Helper/TextHelper.php
Expand Up @@ -24,7 +24,7 @@
*
* Text manipulations: Highlight, excerpt, truncate, strip of links, convert email addresses to mailto: links...
*
* @property HtmlHelper $Html
* @property \Cake\View\Helper\HtmlHelper $Html
* @link http://book.cakephp.org/3.0/en/views/helpers/text.html
* @see \Cake\Utility\Text
*/
Expand Down
4 changes: 2 additions & 2 deletions src/View/Helper/UrlHelper.php
Expand Up @@ -21,7 +21,7 @@
use Cake\View\Helper;

/**
* UrlHelper class for generating urls.
* UrlHelper class for generating URLs.
*/
class UrlHelper extends Helper
{
Expand All @@ -35,7 +35,7 @@ class UrlHelper extends Helper
* escaped afterwards before being displayed.
* - `fullBase`: If true, the full base URL will be prepended to the result
*
* @param string|array|null $url Either a relative string url like `/products/view/23` or
* @param string|array|null $url Either a relative string URL like `/products/view/23` or
* an array of URL parameters. Using an array for URLs will allow you to leverage
* the reverse routing features of CakePHP.
* @param array|bool $options Array of options; bool `full` for BC reasons.
Expand Down

0 comments on commit 814b51c

Please sign in to comment.