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 ( 08b73a...14e86b )
by Gilles
02:19
created
src/Matcher.php 1 patch
Spacing   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     private static function _parseArray($value, $pattern)
42 42
     {
43
-        if(! is_array($value)) {
43
+        if(!is_array($value)) {
44 44
             return false;
45 45
         }
46 46
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
     private static function _parseCons($value, $pattern)
74 74
     {
75
-        if(! is_array($value)) {
75
+        if(!is_array($value)) {
76 76
             return false;
77 77
         }
78 78
 
@@ -145,8 +145,7 @@  discard block
 block discarded – undo
145 145
 
146 146
             if($match !== false) {
147 147
                 return is_callable($callback) ?
148
-                    call_user_func_array($callback, $match) :
149
-                    $callback;
148
+                    call_user_func_array($callback, $match) : $callback;
150 149
             }
151 150
         }
152 151
 
Please login to merge, or discard this patch.