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 ( cc1afa...c98a24 )
by Gilles
01:41
created
src/Parser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     protected 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
     protected function _parseCons($value, $pattern)
74 74
     {
75
-        if(! is_array($value)) {
75
+        if(!is_array($value)) {
76 76
             return false;
77 77
         }
78 78
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
             }
134 134
         }
135 135
 
136
-        if(! $matched) {
136
+        if(!$matched) {
137 137
             $this->_invalidPattern($pattern);
138 138
         }
139 139
 
Please login to merge, or discard this patch.
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.