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.
Passed
Push — master ( 7cb54d...804d9a )
by TJ
03:44
created
src/RawNotification.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
             [],
40 40
             ['notifier' => $this->config['notifier']],
41 41
             ['error' => []],
42
-            ['request' => ['context' => (object) $this->context->all()],
42
+            ['request' => ['context' => (object)$this->context->all()],
43 43
             ],
44
-            ['server' => (object) []],
44
+            ['server' => (object)[]],
45 45
             $payload
46 46
         );
47 47
 
Please login to merge, or discard this patch.
src/LogHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     protected function write(array $record)
34 34
     {
35
-        $this->honeybadger->rawNotification(function ($config) use ($record) {
35
+        $this->honeybadger->rawNotification(function($config) use ($record) {
36 36
             return [
37 37
                 'notifier' => array_merge($config['notifier'], ['name' => 'Honeybadger Log Handler']),
38 38
                 'error' => [
Please login to merge, or discard this patch.