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 ( 14e86b...9d5c74 )
by Gilles
02:13
created
src/Parser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     private static function _parseArray($value, $pattern)
39 39
     {
40
-        if(! is_array($value)) {
40
+        if(!is_array($value)) {
41 41
             return false;
42 42
         }
43 43
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     private static function _parseCons($value, $pattern)
71 71
     {
72
-        if(! is_array($value)) {
72
+        if(!is_array($value)) {
73 73
             return false;
74 74
         }
75 75
 
Please login to merge, or discard this patch.
src/Matcher.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@
 block discarded – undo
26 26
 
27 27
             if($match !== false) {
28 28
                 return is_callable($callback) ?
29
-                    call_user_func_array($callback, $match) :
30
-                    $callback;
29
+                    call_user_func_array($callback, $match) : $callback;
31 30
             }
32 31
         }
33 32
 
Please login to merge, or discard this patch.