@@ -68,7 +68,7 @@ |
||
68 | 68 | */ |
69 | 69 | public function makeGraphEvent() |
70 | 70 | { |
71 | - return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX . 'GraphEvent'); |
|
71 | + return $this->makeGraphNode(static::BASE_GRAPH_OBJECT_PREFIX.'GraphEvent'); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
@@ -163,13 +163,13 @@ |
||
163 | 163 | public function prepareRequestMessage(FacebookRequest $request) |
164 | 164 | { |
165 | 165 | $postToVideoUrl = $request->containsVideoUploads(); |
166 | - $url = $this->getBaseGraphUrl($postToVideoUrl) . $request->getUrl(); |
|
166 | + $url = $this->getBaseGraphUrl($postToVideoUrl).$request->getUrl(); |
|
167 | 167 | |
168 | 168 | // If we're sending files they should be sent as multipart/form-data |
169 | 169 | if ($request->containsFileUploads()) { |
170 | 170 | $requestBody = $request->getMultipartBody(); |
171 | 171 | $request->setHeaders([ |
172 | - 'Content-Type' => 'multipart/form-data; boundary=' . $requestBody->getBoundary(), |
|
172 | + 'Content-Type' => 'multipart/form-data; boundary='.$requestBody->getBoundary(), |
|
173 | 173 | ]); |
174 | 174 | } else { |
175 | 175 | $requestBody = $request->getUrlEncodedBody(); |