Completed
Pull Request — master (#554)
by
unknown
04:12
created
src/Facebook/GraphNodes/GraphObjectFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Facebook/FacebookClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -163,13 +163,13 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.