Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
28 | public function list($begin = 0, $count = 10) |
||
29 | { |
||
30 | $query = [ |
||
31 | 'query' => ['type' => '10', |
||
32 | 'action' => 'list', |
||
33 | 'begin' => $begin, |
||
34 | 'count' => $count, |
||
35 | 'f' => 'json', |
||
36 | 'lang' => 'zh_CN', |
||
37 | 'ajax' => '1', |
||
38 | 'random' => $this->getMillisecond(), |
||
39 | ], ]; |
||
40 | |||
41 | return $this->httpGet('cgi-bin/appmsg', $query); |
||
42 | } |
||
44 |