Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
33 | public function __toString() |
||
34 | { |
||
35 | $info = [ |
||
36 | 'maxMsgSize' => $this->maxMsgSize, |
||
37 | 'msgRetentionSeconds' => $this->msgRetentionSeconds, |
||
38 | 'createTime' => $this->createTime, |
||
39 | 'lastModifyTime' => $this->lastModifyTime, |
||
40 | 'filterType' => $this->filterType, |
||
41 | ]; |
||
42 | |||
43 | return json_encode($info); |
||
44 | } |
||
46 |