| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function history($cursor = null, $sql = null, $limit = 20) |
||
| 28 | { |
||
| 29 | $response = $this->get('chatmessages', [ |
||
| 30 | 'limit' => $limit, |
||
| 31 | 'cursor' => $cursor, |
||
| 32 | 'sql' => $sql, |
||
| 33 | ]); |
||
| 34 | |||
| 35 | return [ |
||
| 36 | 'items' => $response['entities'], |
||
| 37 | 'cursor' => isset($response['cursor']) ? $response['cursor'] : null, |
||
| 38 | ]; |
||
| 39 | } |
||
| 40 | } |
||
| 41 |