| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 11 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 3 | public function run(\Throwable $exception) |
|
| 25 | { |
||
| 26 | 3 | $this->vars = [ |
|
| 27 | 3 | 'time' => $this->getTime(), |
|
| 28 | 3 | 'message' => $exception->getMessage(), |
|
| 29 | 3 | 'file' => $exception->getFile(), |
|
| 30 | 3 | 'line' => $exception->getLine(), |
|
| 31 | 3 | 'stack' => array_reverse($exception->getTrace()), |
|
| 32 | 3 | 'type' => $exception->getCode(), |
|
| 33 | 3 | 'defined' => ['exception' => $exception] |
|
| 34 | 3 | ]; |
|
| 35 | |||
| 36 | 3 | $this->notify(); |
|
| 37 | } |
||
| 39 |