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 ( c98a24...cc1afa )
by Gilles
01:57
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.
src/Parser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             $this->_invalidPattern($pattern);
47 47
         }
48 48
 
49
-        if(! is_array($value)) {
49
+        if(!is_array($value)) {
50 50
             return false;
51 51
         }
52 52
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             $this->_invalidPattern($pattern);
78 78
         }
79 79
 
80
-        if(! is_array($value)) {
80
+        if(!is_array($value)) {
81 81
             return false;
82 82
         }
83 83
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             return $result;
130 130
         }, false);
131 131
 
132
-        if(! $result) {
132
+        if(!$result) {
133 133
             $this->_invalidPattern($pattern);
134 134
         }
135 135
 
Please login to merge, or discard this patch.