| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 14 | 49 | public function __construct(string $databaseName = '', string $username = '', string $password = '') |
|
| 15 | { |
||
| 16 | 49 | $this->username = $username; |
|
| 17 | 49 | $this->password = $password; |
|
| 18 | 49 | $this->databaseName = $databaseName; |
|
| 19 | |||
| 20 | 49 | $this->usePersistentConnection(); |
|
| 21 | 49 | $this->useExceptions(); |
|
| 22 | 49 | } |
|
| 63 |