Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | protected function logContextFormat() |
||
18 | { |
||
19 | return [ |
||
20 | 'ip' => get_local_ip(), |
||
21 | 'get' => request()->getQueryParams(), |
||
22 | 'post' => request()->getParsedBody(), |
||
23 | 'msg' => exception()->getMessage(), |
||
24 | 'code' => exception()->getCode(), |
||
25 | 'file' => exception()->getFile(), |
||
26 | 'line' => exception()->getLine(), |
||
27 | 'trace' => explode("\n", exception()->getTraceAsString()), |
||
28 | ]; |
||
29 | } |
||
30 | } |
||
31 |