code style fixes

This commit is contained in:
Carsten Brandt
2013-12-30 16:55:32 +01:00
parent b471900171
commit ea47ce5ca2
2 changed files with 6 additions and 5 deletions

View File

@ -245,6 +245,10 @@ class Connection extends Component
'dblib' => 'yii\db\mssql\Schema', // dblib drivers on GNU/Linux (and maybe other OSes) hosts 'dblib' => 'yii\db\mssql\Schema', // dblib drivers on GNU/Linux (and maybe other OSes) hosts
'cubrid' => 'yii\db\cubrid\Schema', // CUBRID 'cubrid' => 'yii\db\cubrid\Schema', // CUBRID
]; ];
/**
* @var string Custom PDO wrapper class. If not set, it will use "PDO" or "yii\db\mssql\PDO" when MSSQL is used.
*/
public $pdoClass;
/** /**
* @var Transaction the currently active transaction * @var Transaction the currently active transaction
*/ */
@ -253,10 +257,7 @@ class Connection extends Component
* @var Schema the database schema * @var Schema the database schema
*/ */
private $_schema; private $_schema;
/**
* @var string Custom PDO wrapper class. If not set, it will use "PDO" or "yii\db\mssql\PDO" when MSSQL is used.
*/
public $pdoClass;
/** /**
* Returns a value indicating whether the DB connection is established. * Returns a value indicating whether the DB connection is established.