Completed
Push — master ( c3c281...ab94e9 )
by Gabriel
03:37
created
src/RequestHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     {
75 75
         $headers['Content-Type'] = 'application/json';
76 76
         if ($this->accessToken) {
77
-            $headers['Authorization'] = 'Bearer ' . $this->accessToken;
77
+            $headers['Authorization'] = 'Bearer '.$this->accessToken;
78 78
         }
79 79
         $body = null;
80 80
         if ($params) {
Please login to merge, or discard this patch.
src/Collection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     public function jsonSerialize()
25 25
     {
26
-        return array_map(function (JsonSerializable $item) {
26
+        return array_map(function(JsonSerializable $item) {
27 27
             return $item->jsonSerialize();
28 28
         }, $this->items);
29 29
     }
Please login to merge, or discard this patch.