Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
82 | 46 | public function jsonSerialize(): array |
|
83 | { |
||
84 | 46 | return Serialization::filterUnset([ |
|
85 | 46 | 'custom' => $this->custom, |
|
86 | 46 | 'response' => Serialization::serializeOr($this->response), |
|
87 | 46 | 'request' => Serialization::serializeOr($this->request), |
|
88 | 46 | 'tags' => $this->tagList, |
|
89 | 46 | 'user' => Serialization::serializeOr($this->user), |
|
90 | ]); |
||
91 | } |
||
92 | } |
||
93 |