Total Complexity | 15 |
Total Lines | 75 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class LogService |
||
15 | { |
||
16 | /** |
||
17 | * Get full trace of an exception. |
||
18 | * |
||
19 | * @param Exception $exception |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | public static function getExceptionTraceAsString(Exception $exception) |
||
57 | } |
||
58 | |||
59 | /** |
||
60 | * Get exception args |
||
61 | * |
||
62 | * @param $frameArgs |
||
63 | * |
||
64 | * @return string |
||
65 | */ |
||
66 | private static function getFrameArgs($frameArgs) |
||
91 |