1 | <?php |
||
12 | class Connection extends \yii\db\Connection |
||
13 | { |
||
14 | /** |
||
15 | * @event [[yii\base\Event|Event]] an event that is triggered before a DB connection is established |
||
16 | */ |
||
17 | const EVENT_BEFORE_OPEN = 'beforeOpen'; |
||
18 | |||
19 | /** |
||
20 | * @inheritdoc |
||
21 | */ |
||
22 | protected function createPdoInstance() |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | 1 | public function createCommand($sql = null, $params = []) |
|
42 | } |
||
43 |