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 (9014c2)
by Benjamin
06:05
created
lib/Honeybadger/Sender.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function __construct($guzzleFactory)
34 34
     {
35
-      $this->guzzleFactory = $guzzleFactory;
35
+        $this->guzzleFactory = $guzzleFactory;
36 36
     }
37 37
 
38 38
     /**
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         $response = $client->post(
96 96
             self::NOTICES_URI,
97 97
             ['headers' => $headers,
98
-             'body'    => $data]
98
+                'body'    => $data]
99 99
         );
100 100
 
101 101
         if ($response->getStatusCode() != 201) {
Please login to merge, or discard this patch.
lib/Honeybadger/GuzzleFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 
7 7
 class GuzzleFactory
8 8
 {
9
-  public static function make($options)
10
-  {
9
+    public static function make($options)
10
+    {
11 11
     return new Client($options);
12
-  }
12
+    }
13 13
 }
Please login to merge, or discard this patch.