| Conditions | 3 |
| Paths | 4 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function __construct() |
||
| 30 | { |
||
| 31 | try { |
||
| 32 | $this->connection = new \mysqli(DB_HOST, DB_USER, DB_PASSWD_CLEAR, DB_NAME); |
||
| 33 | |||
| 34 | if ( mysqli_connect_errno()) { |
||
| 35 | throw new Exception("Could not connect to database."); |
||
| 36 | } |
||
| 37 | } catch (Exception $e) { |
||
| 38 | throw new Exception($e->getMessage()); |
||
| 39 | } |
||
| 75 | } |