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 ( d23766...485d8d )
by masaru
04:38 queued 02:32
created
src/Monar/TwoChanDriver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         $lines = array_filter(explode("\n", $body), 'strlen');
109 109
         $number = 0;
110 110
 
111
-        return collect(array_map(function ($line) use (&$number) {
111
+        return collect(array_map(function($line) use (&$number) {
112 112
             $number++;
113 113
             list($name, $email, $date, $body) = explode('<>', $line);
114 114
             $name = trim(strip_tags($name));
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     {
132 132
         $threads = array_filter(explode("\n", $body), 'strlen');
133 133
 
134
-        return collect(array_map(function ($elem) {
134
+        return collect(array_map(function($elem) {
135 135
             list($id, $tmp) = explode('.dat<>', $elem);
136 136
             preg_match('/^(.*)\(([0-9]+)\)\z/', $tmp, $matches);
137 137
 
Please login to merge, or discard this patch.