Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function __construct(string $dsn, string $user = '', string $password = '', string $slave = '', array $options = []) |
||
28 | { |
||
29 | $this->dsn = $dsn; |
||
30 | $this->user = $user; |
||
31 | $this->password = $password; |
||
32 | $this->slave = $slave; |
||
33 | $this->options = $options; |
||
34 | parent::__construct(); |
||
35 | } |
||
55 |