Completed
Push — master ( 6a7fa3...3317e8 )
by Ryota
11s
created
src/ApiMethods.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 
25 25
     /**
26 26
      * @param array $params
27
-     * @param null  $headers
28 27
      */
29 28
     public function user(array $params = [])
30 29
     {
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     private function createAuthStack()
64 64
     {
65 65
         $stack = HandlerStack::create();
66
-        $stack->push(Middleware::mapRequest(function (RequestInterface $request) {
66
+        $stack->push(Middleware::mapRequest(function(RequestInterface $request) {
67 67
             return $request->withHeader('Authorization', 'Bearer '.$this->accessToken);
68 68
         }));
69 69
 
Please login to merge, or discard this patch.