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 ( 0b224a...b93a43 )
by TJ
02:51
created
src/Honeybadger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function notify(Throwable $throwable, FoundationRequest $request = null) : array
62 62
     {
63
-        if (! $this->shouldReport($throwable)) {
63
+        if (!$this->shouldReport($throwable)) {
64 64
             return [];
65 65
         }
66 66
 
@@ -132,6 +132,6 @@  discard block
 block discarded – undo
132 132
      */
133 133
     private function shouldReport(Throwable $throwable) : bool
134 134
     {
135
-        return ! $this->excludedException($throwable) && ! is_null($this->config['api_key']);
135
+        return !$this->excludedException($throwable) && !is_null($this->config['api_key']);
136 136
     }
137 137
 }
Please login to merge, or discard this patch.