| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 45 | public function __construct( |
||
| 46 | string $host, |
||
| 47 | string $username, |
||
| 48 | string $password, |
||
| 49 | string $dbname, |
||
| 50 | string $adapter, |
||
| 51 | int $port = 3306 |
||
| 52 | ) { |
||
| 53 | $this->host = $host; |
||
| 54 | $this->username = $username; |
||
| 55 | $this->password = $password; |
||
| 56 | $this->dbname = $dbname; |
||
| 57 | $this->adapter = $adapter; |
||
| 58 | $this->port = $port; |
||
| 59 | } |
||
| 85 |