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 ( e84720...22c11a )
by Freek
03:31 queued 01:45
created
src/DropboxAdapter.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -239,6 +239,7 @@
 block discarded – undo
239 239
 
240 240
     /**
241 241
      * {@inheritdoc}
242
+     * @param string $path
242 243
      */
243 244
     public function applyPathPrefix($path): string
244 245
     {
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\FlysystemDropbox;
4 4
 
5
+use League\Flysystem\Adapter\AbstractAdapter;
6
+use League\Flysystem\Adapter\Polyfill\NotSupportingVisibilityTrait;
7
+use League\Flysystem\Config;
5 8
 use LogicException;
6 9
 use Spatie\Dropbox\Client;
7
-use League\Flysystem\Config;
8 10
 use Spatie\Dropbox\Exceptions\BadRequest;
9
-use League\Flysystem\Adapter\AbstractAdapter;
10
-use League\Flysystem\Adapter\Polyfill\NotSupportingVisibilityTrait;
11 11
 
12 12
 class DropboxAdapter extends AbstractAdapter
13 13
 {
Please login to merge, or discard this patch.