From ef0d084c210213151f1c710a281ac659db64a35c Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Tue, 11 Mar 2014 05:34:32 +0100 Subject: [PATCH] better use @see for See in phpdoc --- ButtonDropdown.php | 2 +- NavBar.php | 8 ++++---- Progress.php | 2 +- Tabs.php | 6 +++--- Widget.php | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ButtonDropdown.php b/ButtonDropdown.php index 6358177..434f214 100644 --- a/ButtonDropdown.php +++ b/ButtonDropdown.php @@ -39,7 +39,7 @@ class ButtonDropdown extends Widget public $label = 'Button'; /** * @var array the HTML attributes of the button. - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $options = []; /** diff --git a/NavBar.php b/NavBar.php index 2446d3c..b61d09f 100644 --- a/NavBar.php +++ b/NavBar.php @@ -44,7 +44,7 @@ class NavBar extends Widget * * - tag: string, defaults to "nav", the name of the container tag. * - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $options = []; /** @@ -52,7 +52,7 @@ class NavBar extends Widget * * - tag: string, defaults to "div", the name of the container tag. * - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $containerOptions = []; /** @@ -67,7 +67,7 @@ class NavBar extends Widget public $brandUrl; /** * @var array the HTML attributes of the brand link. - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $brandOptions = []; /** @@ -81,7 +81,7 @@ class NavBar extends Widget public $renderInnerContainer = true; /** * @var array the HTML attributes of the inner container. - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $innerContainerOptions = []; diff --git a/Progress.php b/Progress.php index 0ebd910..33b7bb1 100644 --- a/Progress.php +++ b/Progress.php @@ -69,7 +69,7 @@ class Progress extends Widget public $percent = 0; /** * @var array the HTML attributes of the bar. - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $barOptions = []; /** diff --git a/Tabs.php b/Tabs.php index cb7101d..6c7fd21 100644 --- a/Tabs.php +++ b/Tabs.php @@ -76,19 +76,19 @@ class Tabs extends Widget * * - tag: string, defaults to "div", the tag name of the item container tags. * - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $itemOptions = []; /** * @var array list of HTML attributes for the header container tags. This will be overwritten * by the "headerOptions" set in individual [[items]]. - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $headerOptions = []; /** * @var array list of HTML attributes for the tab header link tags. This will be overwritten * by the "linkOptions" set in individual [[items]]. - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $linkOptions = []; /** diff --git a/Widget.php b/Widget.php index dac66ef..e135737 100644 --- a/Widget.php +++ b/Widget.php @@ -21,7 +21,7 @@ class Widget extends \yii\base\Widget { /** * @var array the HTML attributes for the widget container tag. - * See [[\yii\helpers\Html::renderTagAttributes()]] for details on how attributes are being rendered. + * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. */ public $options = []; /**