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.
Passed
Push — master ( 39a07d...8800c0 )
by Trevor
03:09
created
src/Api/Videos.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
             $from        = $copiedBytes;
187 187
             $copiedBytes += stream_copy_to_stream($resource, $chunk, $this->chunkSize, $copiedBytes);
188 188
             $lastResponse = null;
189
-            $response= null;
189
+            $response = null;
190 190
             try {
191 191
                 $response = $this->browser->submit(
192 192
                     "/videos/$videoId/source",
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
                         'Expect'        => '',
198 198
                     )
199 199
                 );
200
-                if($response->isSuccessful() && $response->getStatusCode() !== 100){
200
+                if ($response->isSuccessful() && $response->getStatusCode() !== 100) {
201 201
                     $lastResponse = $this->unmarshal($response);
202 202
                 }
203 203
             } catch (RequestException $e) {
Please login to merge, or discard this patch.