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 ( cd0675...c31270 )
by Freek
12s
created
src/Client.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
      *
383 383
      * @link https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-start
384 384
      *
385
-     * @param string|StreamInterface $contents
385
+     * @param Psr7\LimitStream $contents
386 386
      * @param bool   $close
387 387
      *
388 388
      * @return UploadSessionCursor
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
      *
407 407
      * @link https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-append_v2
408 408
      *
409
-     * @param string|StreamInterface $contents
409
+     * @param Psr7\LimitStream $contents
410 410
      * @param UploadSessionCursor $cursor
411 411
      * @param bool                $close
412 412
      *
@@ -430,10 +430,10 @@  discard block
 block discarded – undo
430 430
      *
431 431
      * @link https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-finish
432 432
      *
433
-     * @param string|StreamInterface              $contents
433
+     * @param string              $contents
434 434
      * @param \Spatie\Dropbox\UploadSessionCursor $cursor
435 435
      * @param string                              $path
436
-     * @param string|array                        $mode
436
+     * @param string                        $mode
437 437
      * @param bool                                $autorename
438 438
      * @param bool                                $mute
439 439
      *
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,14 +3,14 @@
 block discarded – undo
3 3
 namespace Spatie\Dropbox;
4 4
 
5 5
 use Exception;
6
+use GuzzleHttp\Client as GuzzleClient;
7
+use GuzzleHttp\Exception\ClientException;
8
+use GuzzleHttp\Exception\RequestException;
6 9
 use GuzzleHttp\Psr7;
7 10
 use GuzzleHttp\Psr7\StreamWrapper;
8
-use Psr\Http\Message\StreamInterface;
9
-use GuzzleHttp\Client as GuzzleClient;
10 11
 use Psr\Http\Message\ResponseInterface;
11
-use GuzzleHttp\Exception\ClientException;
12
+use Psr\Http\Message\StreamInterface;
12 13
 use Spatie\Dropbox\Exceptions\BadRequest;
13
-use GuzzleHttp\Exception\RequestException;
14 14
 
15 15
 class Client
16 16
 {
Please login to merge, or discard this patch.