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 ( 56139c...893ddf )
by Gilles
02:17
created
src/Matcher.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param mixed $value
9 9
      * @param string $pattern
10
-     * @return bool|array
10
+     * @return callable
11 11
      */
12 12
     private static function parse($value, $pattern)
13 13
     {
Please login to merge, or discard this 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.