| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 33 | private function setReportVariables(Exception $exception) |
||
| 34 | { |
||
| 35 | $this->view->set('message', $exception->getMessage()); |
||
| 36 | $this->view->set('file', $exception->getFile()); |
||
| 37 | $this->view->set('line', $exception->getLine()); |
||
| 38 | $this->view->set('traces', $exception->getTrace()); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |