mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 14:46:19 +08:00 
			
		
		
		
	Fixed some malformed @var tags (#13468) [skip ci]
This commit is contained in:
		
				
					committed by
					
						
						Alexander Makarov
					
				
			
			
				
	
			
			
			
						parent
						
							a3a868e427
						
					
				
				
					commit
					5609e918de
				
			@ -43,7 +43,7 @@ class Controller extends Component implements ViewContextInterface
 | 
				
			|||||||
     */
 | 
					     */
 | 
				
			||||||
    public $id;
 | 
					    public $id;
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * @var Module $module the module that this controller belongs to.
 | 
					     * @var Module the module that this controller belongs to.
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public $module;
 | 
					    public $module;
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
 | 
				
			|||||||
@ -397,7 +397,7 @@ trait ActiveRelationTrait
 | 
				
			|||||||
     * Indexes buckets by column name.
 | 
					     * Indexes buckets by column name.
 | 
				
			||||||
     *
 | 
					     *
 | 
				
			||||||
     * @param array $buckets
 | 
					     * @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.
 | 
					     * This can also be a callable (e.g. anonymous function) that returns the index value based on the given row data.
 | 
				
			||||||
     * @return array
 | 
					     * @return array
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
 | 
				
			|||||||
@ -45,7 +45,7 @@ trait QueryTrait
 | 
				
			|||||||
     */
 | 
					     */
 | 
				
			||||||
    public $orderBy;
 | 
					    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
 | 
					     * 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()]].
 | 
					     * row data. For more details, see [[indexBy()]]. This property is only used by [[QueryInterface::all()|all()]].
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
 | 
				
			|||||||
@ -27,7 +27,7 @@ class UserEvent extends Event
 | 
				
			|||||||
     */
 | 
					     */
 | 
				
			||||||
    public $cookieBased;
 | 
					    public $cookieBased;
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * @var int $duration number of seconds that the user can remain in logged-in status.
 | 
					     * @var int number of seconds that the user can remain in logged-in status.
 | 
				
			||||||
     * If 0, it means login till the user closes the browser or the session is manually destroyed.
 | 
					     * If 0, it means login till the user closes the browser or the session is manually destroyed.
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public $duration;
 | 
					    public $duration;
 | 
				
			||||||
 | 
				
			|||||||
@ -27,7 +27,7 @@ use yii\helpers\Json;
 | 
				
			|||||||
class ActiveForm extends Widget
 | 
					class ActiveForm extends Widget
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * @var array|string $action the form action URL. This parameter will be processed by [[\yii\helpers\Url::to()]].
 | 
					     * @var array|string the form action URL. This parameter will be processed by [[\yii\helpers\Url::to()]].
 | 
				
			||||||
     * @see method for specifying the HTTP method for this form.
 | 
					     * @see method for specifying the HTTP method for this form.
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public $action = '';
 | 
					    public $action = '';
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user