Browse Source

Update phpdoc

tags/2.0.37
Alexander Makarov 4 years ago
parent
commit
dab7a6c317
No known key found for this signature in database
GPG Key ID: 3617B79C6A325E4A
  1. 2
      framework/console/Controller.php
  2. 3
      framework/console/widgets/Table.php
  3. 3
      framework/db/sqlite/Schema.php
  4. 3
      framework/validators/IpValidator.php
  5. 2
      framework/web/Controller.php

2
framework/console/Controller.php

@ -34,8 +34,6 @@ use yii\helpers\Inflector;
* read-only.
* @property array $passedOptions The names of the options passed during execution. This property is
* read-only.
* @property Request $request
* @property Response $response
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0

3
framework/console/widgets/Table.php

@ -40,6 +40,9 @@ use yii\helpers\Console;
* ],
* ]);
*
* @property string $listPrefix List prefix. This property is write-only.
* @property int $screenWidth Screen width. This property is write-only.
*
* @author Daniel Gomez Pan <pana_1990@hotmail.com>
* @since 2.0.13
*/

3
framework/db/sqlite/Schema.php

@ -25,7 +25,8 @@ use yii\helpers\ArrayHelper;
* Schema is the class for retrieving metadata from a SQLite (2/3) database.
*
* @property string $transactionIsolationLevel The transaction isolation level to use for this transaction.
* This can be either [[Transaction::READ_UNCOMMITTED]] or [[Transaction::SERIALIZABLE]].
* This can be either [[Transaction::READ_UNCOMMITTED]] or [[Transaction::SERIALIZABLE]]. This property is
* write-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0

3
framework/validators/IpValidator.php

@ -33,7 +33,8 @@ use yii\web\JsExpression;
* ```
*
* @property array $ranges The IPv4 or IPv6 ranges that are allowed or forbidden. See [[setRanges()]] for
* detailed description.
* detailed description. Note that the type of this property differs in getter and setter. See [[getRanges()]]
* and [[setRanges()]] for details.
*
* @author Dmitry Naumenko <d.naumenko.a@gmail.com>
* @since 2.0.7

2
framework/web/Controller.php

@ -18,8 +18,6 @@ use yii\helpers\Url;
*
* For more details and usage information on Controller, see the [guide article on controllers](guide:structure-controllers).
*
* @property Request $request
* @property Response $response
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/

Loading…
Cancel
Save