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 ( 2ba5b4...769475 )
by masaru
07:41 queued 04:44
created
src/Monar/TwoChanDriver.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         $parsed = parse_url($this->url);
92 92
         $paths = $this->renewArray(explode('/', parse_url($this->url, PHP_URL_PATH)));
93 93
 
94
-        $this->baseUrl = $parsed['scheme'] . '://' . $parsed['host'];
94
+        $this->baseUrl = $parsed['scheme'].'://'.$parsed['host'];
95 95
         $this->category = '';
96 96
         $this->board = $paths[2];
97 97
         $this->thread = $paths[3];
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         $lines = array_filter(explode("\n", $body), 'strlen');
110 110
         $number = 0;
111 111
 
112
-        return collect(array_map(function ($line) use (&$number) {
112
+        return collect(array_map(function($line) use (&$number) {
113 113
             $number++;
114 114
             list($name, $email, $date, $body) = explode('<>', $line);
115 115
             $name = trim(strip_tags($name));
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     {
133 133
         $threads = array_filter(explode("\n", $body), 'strlen');
134 134
 
135
-        return collect(array_map(function ($elem) {
135
+        return collect(array_map(function($elem) {
136 136
             list($id, $tmp) = explode('.dat<>', $elem);
137 137
             preg_match('/^(.*)\(([0-9]+)\)\z/', $tmp, $matches);
138 138
 
Please login to merge, or discard this patch.