@@ -35,7 +35,7 @@ |
||
35 | 35 | public function last() |
36 | 36 | { |
37 | 37 | $response = $this->request->exec( |
38 | - UrlHelper::RESOURCE_GET_LAST_CONVERSATIONS . '?' . Request::createQuery() |
|
38 | + UrlHelper::RESOURCE_GET_LAST_CONVERSATIONS.'?'.Request::createQuery() |
|
39 | 39 | ); |
40 | 40 | |
41 | 41 | return $this->response->getData($response); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | { |
19 | 19 | $data = ["options" => ['allow_state' => true]]; |
20 | 20 | $query = Request::createQuery($data); |
21 | - $response = $this->request->exec(UrlHelper::RESOURCE_GET_LATEST_NEWS . "?{$query}"); |
|
21 | + $response = $this->request->exec(UrlHelper::RESOURCE_GET_LATEST_NEWS."?{$query}"); |
|
22 | 22 | |
23 | 23 | return $this->response->getData($response); |
24 | 24 | } |
@@ -151,7 +151,7 @@ |
||
151 | 151 | ]; |
152 | 152 | |
153 | 153 | $data = array("options" => $requestOptions); |
154 | - $url = UrlHelper::RESOURCE_PIN_INFO . '?' . Request::createQuery($data); |
|
154 | + $url = UrlHelper::RESOURCE_PIN_INFO.'?'.Request::createQuery($data); |
|
155 | 155 | $response = $this->request->exec($url); |
156 | 156 | |
157 | 157 | return $this->response->checkResponse($response); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | public function getData($data, $url, $sourceUrl, $bookmarks = []) |
22 | 22 | { |
23 | 23 | $data['options'] = $data; |
24 | - $response = $this->getRequest()->exec($url . '?' . Request::createQuery($data, $sourceUrl, $bookmarks)); |
|
24 | + $response = $this->getRequest()->exec($url.'?'.Request::createQuery($data, $sourceUrl, $bookmarks)); |
|
25 | 25 | |
26 | 26 | return $this->getResponse()->getPaginationData($response); |
27 | 27 | } |