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 ( 54fa11...dd26d0 )
by Cees-Jan
02:48 queued 15s
created
src/Utils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     public static function checkCorrectLogLevel(string $level): bool
111 111
     {
112 112
         $level = strtolower($level);
113
-        if (! array_key_exists($level, self::LOG_LEVELS)) {
113
+        if (!array_key_exists($level, self::LOG_LEVELS)) {
114 114
             throw new InvalidArgumentException(
115 115
                 'Level "' . $level . '" is not defined, use one of: ' . implode(', ', array_keys(self::LOG_LEVELS)),
116 116
             );
Please login to merge, or discard this patch.