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 ( f4cbb3...3061f2 )
by Cees-Jan
02:36 queued 13s
created
src/ToContextProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     public function __invoke(LogRecord $record): LogRecord
24 24
     {
25 25
         foreach ($this->keys as $key) {
26
-            if (! array_key_exists($key, $record->toArray())) {
26
+            if (!array_key_exists($key, $record->toArray())) {
27 27
                 continue;
28 28
             }
29 29
 
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
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         if (array_key_exists('exception', $record->context) && $record->context['exception'] instanceof Throwable) {
26 26
             $record->extra['trace'] = $record->context['exception']->getTrace();
27 27
             foreach ($record->extra['trace'] as $index => $line) {
28
-                if (! array_key_exists('args', $line)) {
28
+                if (!array_key_exists('args', $line)) {
29 29
                     continue;
30 30
                 }
31 31
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
             }
34 34
         }
35 35
 
36
-        if ($this->always && ! array_key_exists('trace', $record->extra)) {
36
+        if ($this->always && !array_key_exists('trace', $record->extra)) {
37 37
             $record->extra['trace'] = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
38 38
         }
39 39
 
Please login to merge, or discard this patch.