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