finalized PhpDocController

- cleanup API and usage, add documetation link
- introduced @property feature in getter or setter which has precedence
  over @return or @param tag if present
This commit is contained in:
Carsten Brandt
2013-08-28 18:58:59 +02:00
parent 1d622b65c3
commit 91c16782ef
4 changed files with 58 additions and 26 deletions

View File

@@ -20,7 +20,7 @@ use yii\base\InvalidParamException;
* @property Pagination|boolean $pagination The pagination object. If this is false, it means the pagination
* is disabled. Note that the type of this property differs in getter and setter. See [[getPagination()]] and
* [[setPagination()]] for details.
* @property Sort|boolean $sort The sorting object. If this is false, it means that sorting is disabled. Note
* @property Sort|boolean $sort The sorting object. If this is false, it means the sorting is disabled. Note
* that the type of this property differs in getter and setter. See [[getSort()]] and [[setSort()]] for details.
*
* @author Qiang Xue <qiang.xue@gmail.com>