Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
41 | 12 | public function logThrowable(Throwable $throwable) |
|
42 | { |
||
43 | 12 | while ($throwable) { |
|
44 | 12 | $this->logger->error($throwable->getMessage(), [ |
|
45 | 12 | $throwable->getCode(), |
|
46 | 12 | $throwable->getFile(), |
|
47 | 12 | $throwable->getLine(), |
|
48 | 12 | $throwable->getTrace() |
|
49 | ]); |
||
50 | |||
51 | 12 | $throwable = $throwable->getPrevious(); |
|
52 | } |
||
53 | 12 | } |
|
54 | } |
||
55 |