| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | public function asString(): string |
||
| 37 | 408 | { |
|
| 38 | $dsn = "$this->driver:" . "Server=$this->server" . ";Database=$this->databaseName"; |
||
| 39 | 408 | ||
| 40 | if ($this->port !== null) { |
||
| 41 | $dsn = "$this->driver:" . "Server=$this->server," . "$this->port" . ";Database=$this->databaseName"; |
||
| 42 | 1 | } |
|
| 43 | |||
| 44 | 1 | return $dsn; |
|
| 45 | } |
||
| 57 |