| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 38 | private function setReportVariables(ViewEngineInterface $view, Exception $exception) |
||
| 39 | { |
||
| 40 | $view->set('message', $exception->getMessage()); |
||
| 41 | $view->set('file', $exception->getFile()); |
||
| 42 | $view->set('line', $exception->getLine()); |
||
| 43 | $view->set('traces', $exception->getTrace()); |
||
| 44 | } |
||
| 45 | } |
||
| 46 |