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 ( dedc70...f4cbb3 )
by Cees-Jan
09:46 queued 13s
created
src/ToContextProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public function __invoke(array $record): array
29 29
     {
30 30
         foreach ($this->keys as $key) {
31
-            if (! array_key_exists($key, $record)) {
31
+            if (!array_key_exists($key, $record)) {
32 32
                 continue;
33 33
             }
34 34
 
Please login to merge, or discard this patch.
src/TraceProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         if (array_key_exists('exception', $record['context']) && $record['context']['exception'] instanceof Throwable) {
31 31
             $record['extra']['trace'] = $record['context']['exception']->getTrace();
32 32
             foreach ($record['extra']['trace'] as $index => $line) {
33
-                if (! array_key_exists('args', $line)) {
33
+                if (!array_key_exists('args', $line)) {
34 34
                     continue;
35 35
                 }
36 36
 
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
             }
39 39
         }
40 40
 
41
-        if ($this->always && ! array_key_exists('trace', $record['extra'])) {
41
+        if ($this->always && !array_key_exists('trace', $record['extra'])) {
42 42
             $record['extra']['trace'] = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
43 43
         }
44 44
 
Please login to merge, or discard this patch.