Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class Connection extends PdoConnection |
||
9 | { |
||
10 | use ConfigTrait; |
||
11 | |||
12 | public function multiQuery(string $query) |
||
13 | { |
||
14 | return $this->result = $this->query($query); |
||
15 | } |
||
16 | |||
17 | public function nextResult() |
||
18 | { |
||
19 | return false; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @inheritDoc |
||
24 | */ |
||
25 | public function open(string $database, string $schema = '') |
||
32 | } |
||
33 | } |
||
34 |