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 ( 0daf0a...5782df )
by Gilles
02:28
created
src/Parser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         $patterns = $this->_split(':', '(', ')', substr($pattern, 1, -1));
60 60
         $last_pattern = array_pop($patterns);
61 61
 
62
-        if(! is_array($value)) {
62
+        if(!is_array($value)) {
63 63
             return false;
64 64
         }
65 65
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 
127 127
     protected function _recurse($value, $patterns)
128 128
     {
129
-        if(! is_array($value) || count($patterns) > count($value)) {
129
+        if(!is_array($value) || count($patterns) > count($value)) {
130 130
             return false;
131 131
         }
132 132
 
Please login to merge, or discard this patch.