| Conditions | 3 |
| Paths | 4 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 58 | public function __construct($database, $host = null, $user = null, $pass = null, $port = null) |
||
| 59 | { |
||
| 60 | $this->host = $host ?: 'localhost'; |
||
| 61 | $this->database = $database; |
||
| 62 | $this->user = $user; |
||
| 63 | $this->pass = $pass; |
||
| 64 | $this->port = $port ?: 27017; |
||
| 65 | $this->dsn = $this->buildDsn(); |
||
| 66 | } |
||
| 67 | |||
| 105 |