Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
40 | public function last() |
||
41 | { |
||
42 | $this->request->checkLoggedIn(); |
||
43 | $data = Request::createRequestData(); |
||
44 | $query = UrlHelper::buildRequestString($data); |
||
45 | $response = $this->request->exec(UrlHelper::RESOURCE_GET_LAST_CONVERSATIONS.'?'.$query); |
||
46 | |||
47 | return $this->response->getData($response); |
||
48 | } |
||
49 | } |
||
50 |