Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
92 | 46 | public function jsonSerialize(): array |
|
93 | { |
||
94 | 46 | return Serialization::filterUnset([ |
|
95 | 46 | 'custom' => $this->custom, |
|
96 | 46 | 'response' => Serialization::serializeOr($this->response), |
|
97 | 46 | 'request' => Serialization::serializeOr($this->request), |
|
98 | 46 | 'tags' => $this->tagList, |
|
99 | 46 | 'user' => Serialization::serializeOr($this->user), |
|
100 | ]); |
||
101 | } |
||
102 | } |
||
103 |