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.
Completed
Push — master ( 98b0f2...831c5b )
by Cees-Jan
08:34 queued 08:34
created
src/functions_include.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use function function_exists;
8 8
 
9 9
 // @codeCoverageIgnoreStart
10
-if (! function_exists('WyriHaximus\PSR3\processPlaceHolders')) {
10
+if (!function_exists('WyriHaximus\PSR3\processPlaceHolders')) {
11 11
     require __DIR__ . '/functions.php';
12 12
 }
13 13
 // @codeCoverageIgnoreEnd
Please login to merge, or discard this patch.
src/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 function checkCorrectLogLevel(string $level): bool
109 109
 {
110 110
     $level = strtolower($level);
111
-    if (! array_key_exists($level, LOG_LEVELS)) {
111
+    if (!array_key_exists($level, LOG_LEVELS)) {
112 112
         throw new InvalidArgumentException(
113 113
             'Level "' . $level . '" is not defined, use one of: ' . implode(', ', array_keys(LOG_LEVELS))
114 114
         );
Please login to merge, or discard this patch.