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 ( 11439f...c98a24 )
by Gilles
01:55
created
src/functions.php 1 patch
Spacing   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,8 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
         if($match !== false) {
38 38
             return is_callable($callback) ?
39
-                call_user_func_array($callback, $match) :
40
-                $callback;
39
+                call_user_func_array($callback, $match) : $callback;
41 40
         }
42 41
     }
43 42
 
@@ -84,8 +83,7 @@  discard block
 block discarded – undo
84 83
             case $delimiter:
85 84
                 if($acc[2] === 0) {
86 85
                     return strlen(trim($acc[1])) === 0 ?
87
-                        false :
88
-                        [array_merge($acc[0], [trim($acc[1])]), '', 0];
86
+                        false : [array_merge($acc[0], [trim($acc[1])]), '', 0];
89 87
                 }
90 88
                 break;
91 89
             case $open:
Please login to merge, or discard this patch.