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