| Conditions | 2 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function __construct($dbConfig) { |
||
| 42 | self::$instance = $this; |
||
| 43 | try { |
||
| 44 | $this->pdo = $this->connect($dbConfig); |
||
| 45 | $this->pdo->exec("set names utf8"); |
||
| 46 | } catch (\PDOException $ex) { |
||
| 47 | Application::app()->errorPage(503); |
||
| 48 | Application::app()->view->addData('error', $ex->getMessage()); |
||
| 49 | } |
||
| 50 | } |
||
| 51 | |||
| 63 |