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
Branch master (6a9997)
by Gilles
01:51
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
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
      */
22 22
     public static function match($value, array $patterns)
23 23
     {
24
-        foreach($patterns as $pattern => $callback) {
24
+        foreach ($patterns as $pattern => $callback) {
25 25
             $match = self::parse($value, $pattern);
26 26
 
27
-            if($match !== false) {
27
+            if ($match !== false) {
28 28
                 return call_user_func_array($callback, $match);
29 29
             }
30 30
         }
Please login to merge, or discard this patch.