mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-03 05:48:11 +08:00
Fixed some malformed @var tags (#13468) [skip ci]
This commit is contained in:
committed by
Alexander Makarov
parent
a3a868e427
commit
5609e918de
@ -397,7 +397,7 @@ trait ActiveRelationTrait
|
||||
* Indexes buckets by column name.
|
||||
*
|
||||
* @param array $buckets
|
||||
* @var string|callable $column the name of the column by which the query results should be indexed by.
|
||||
* @param string|callable $indexBy the name of the column by which the query results should be indexed by.
|
||||
* This can also be a callable (e.g. anonymous function) that returns the index value based on the given row data.
|
||||
* @return array
|
||||
*/
|
||||
|
||||
@ -45,7 +45,7 @@ trait QueryTrait
|
||||
*/
|
||||
public $orderBy;
|
||||
/**
|
||||
* @var string|callable $column the name of the column by which the query results should be indexed by.
|
||||
* @var string|callable the name of the column by which the query results should be indexed by.
|
||||
* This can also be a callable (e.g. anonymous function) that returns the index value based on the given
|
||||
* row data. For more details, see [[indexBy()]]. This property is only used by [[QueryInterface::all()|all()]].
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user