| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | 840 | public function __construct(string $driver, string $host, string $dbname, string $port = null, array $options = []) |
|
| 16 | { |
||
| 17 | 840 | $this->driver = $driver; |
|
| 18 | 840 | $this->host = $host; |
|
| 19 | 840 | $this->dbname = $dbname; |
|
| 20 | 840 | $this->port = $port; |
|
| 21 | 840 | $this->options = $options; |
|
| 22 | 840 | } |
|
| 65 |