Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
77 | 8 | public function jsonSerialize(): array |
|
78 | { |
||
79 | 8 | return Serialization::filterUnset([ |
|
80 | 8 | 'level' => $this->level, |
|
81 | 8 | 'logger_name' => $this->loggerName, |
|
82 | 8 | 'message' => $this->message, |
|
83 | 8 | 'param_message' => $this->parameterizedMessage, |
|
84 | 8 | 'stacktrace' => Serialization::serialize(...$this->stackTraceFrameList), |
|
85 | ]); |
||
86 | } |
||
87 | } |
||
88 |