mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-10-31 18:47:33 +08:00 
			
		
		
		
	Fix @var annotations for yii\db\Connection properties (#20596)
				
					
				
			This commit is contained in:
		| @ -431,15 +431,15 @@ class Connection extends Component | |||||||
|      */ |      */ | ||||||
|     private $_queryBuilderConfigurations = []; |     private $_queryBuilderConfigurations = []; | ||||||
|     /** |     /** | ||||||
|      * @var Transaction the currently active transaction |      * @var Transaction|null the currently active transaction | ||||||
|      */ |      */ | ||||||
|     private $_transaction; |     private $_transaction; | ||||||
|     /** |     /** | ||||||
|      * @var Schema the database schema |      * @var Schema|null the database schema | ||||||
|      */ |      */ | ||||||
|     private $_schema; |     private $_schema; | ||||||
|     /** |     /** | ||||||
|      * @var string driver name |      * @var string|null driver name | ||||||
|      */ |      */ | ||||||
|     private $_driverName; |     private $_driverName; | ||||||
|     /** |     /** | ||||||
| @ -455,11 +455,11 @@ class Connection extends Component | |||||||
|      */ |      */ | ||||||
|     private $_queryCacheInfo = []; |     private $_queryCacheInfo = []; | ||||||
|     /** |     /** | ||||||
|      * @var string[] quoted table name cache for [[quoteTableName()]] calls |      * @var string[]|null quoted table name cache for [[quoteTableName()]] calls | ||||||
|      */ |      */ | ||||||
|     private $_quotedTableNames; |     private $_quotedTableNames; | ||||||
|     /** |     /** | ||||||
|      * @var string[] quoted column name cache for [[quoteColumnName()]] calls |      * @var string[]|null quoted column name cache for [[quoteColumnName()]] calls | ||||||
|      */ |      */ | ||||||
|     private $_quotedColumnNames; |     private $_quotedColumnNames; | ||||||
|  |  | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user
	 Maksim Spirkov
					Maksim Spirkov