| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 3 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 26 | public function __construct( |
||
| 27 | string $dsn, |
||
| 28 | string $username = '', |
||
| 29 | string $password = '', |
||
| 30 | array $options = [], |
||
| 31 | array $queries = [] |
||
| 32 | ) { |
||
| 33 | $this->dsn = $dsn; |
||
| 34 | $this->username = $username; |
||
| 35 | $this->password = $password; |
||
| 36 | $this->options = $options; |
||
| 37 | $this->queries = $queries; |
||
| 38 | } |
||
| 58 |