Commit ea47ce5c by Carsten Brandt

code style fixes

parent b4719001
...@@ -246,6 +246,10 @@ class Connection extends Component ...@@ -246,6 +246,10 @@ class Connection extends Component
'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
*/ */
private $_transaction; private $_transaction;
...@@ -253,10 +257,7 @@ class Connection extends Component ...@@ -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.
......
...@@ -145,7 +145,7 @@ class DbFixtureManager extends Component ...@@ -145,7 +145,7 @@ class DbFixtureManager extends Component
} }
$this->db->createCommand()->truncateTable($tableName)->execute(); $this->db->createCommand()->truncateTable($tableName)->execute();
$this->db->createCommand()->resetSequence($tableName,1)->execute(); $this->db->createCommand()->resetSequence($tableName, 1)->execute();
$fileName = $this->basePath . '/' . $tableName . '.php'; $fileName = $this->basePath . '/' . $tableName . '.php';
if (!is_file($fileName)) { if (!is_file($fileName)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment