| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function __construct( |
||
| 30 | string $driver, |
||
| 31 | string $dbName, |
||
| 32 | string $host, |
||
| 33 | ?string $port, |
||
| 34 | string $username, |
||
| 35 | ?string $password, |
||
| 36 | string $charset = 'utf8' |
||
| 37 | ) { |
||
| 38 | $this->driver = $driver; |
||
| 39 | $this->dbName = $dbName; |
||
| 40 | $this->host = $host; |
||
| 41 | $this->port = $port; |
||
| 42 | $this->username = $username; |
||
| 43 | $this->password = $password; |
||
| 44 | $this->charset = $charset; |
||
| 45 | } |
||
| 46 | |||
| 63 |