GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Branch master (ebf186)
by Christian
05:35
created
Category
src/Service/UserService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function getAttends(string $userId, int $page = 1) : array
44 44
     {
45
-        return $this->call('user/'.$userId  .'/attended', array(
45
+        return $this->call('user/'.$userId.'/attended', array(
46 46
             'p' => $page
47 47
         ));
48 48
     }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function getEdits(string $userId, int $page = 1) : array
62 62
     {
63
-        return $this->call('user/'.$userId  .'/edited', array(
63
+        return $this->call('user/'.$userId.'/edited', array(
64 64
             'p' => $page
65 65
         ));
66 66
     }
Please login to merge, or discard this patch.
src/Connection/GuzzleConnection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      */
40 40
     public function call(string $method, array $params = array(), string $requestMethod = 'GET'): array
41 41
     {
42
-        $data  = $this->buildParameter($params);
42
+        $data = $this->buildParameter($params);
43 43
 
44 44
         try {
45 45
             if ($requestMethod == 'POST') {
Please login to merge, or discard this patch.
src/Connection/HTTPlugConnection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,12 +48,12 @@
 block discarded – undo
48 48
     public function call(string $method, array $params = array(), string $requestMethod = 'GET'): array
49 49
     {
50 50
         try {
51
-            $data   = $this->buildParameter($params);
51
+            $data = $this->buildParameter($params);
52 52
 
53 53
             if ($requestMethod == 'POST') {
54
-                $request = $this->messageFactory->createRequest($requestMethod, $this->uri . $method .'.json', array(), $data);
54
+                $request = $this->messageFactory->createRequest($requestMethod, $this->uri.$method.'.json', array(), $data);
55 55
             } else {
56
-                $request = $this->messageFactory->createRequest($requestMethod, $this->uri . $method .'.json?' . $data);
56
+                $request = $this->messageFactory->createRequest($requestMethod, $this->uri.$method.'.json?'.$data);
57 57
             }
58 58
             $response = $this->client->sendRequest($request);
59 59
 
Please login to merge, or discard this patch.