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 ( 80cafa...d6a2b9 )
by
unknown
03:01
created
src/DropboxAdapter.php 2 patches
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -287,6 +287,11 @@
 block discarded – undo
287 287
         return '/' . ltrim(rtrim($path, '/'), '/');
288 288
     }
289 289
 
290
+    /**
291
+     * @param string $path
292
+     * @param string $contents
293
+     * @param string $mode
294
+     */
290 295
     protected function upload($path, $contents, $mode)
291 296
     {
292 297
         $location = $this->applyPathPrefix($path);
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace Spatie\FlysystemDropbox;
4 4
 
5 5
 
6
+use Exception;
6 7
 use League\Flysystem\Adapter\AbstractAdapter;
7 8
 use League\Flysystem\Adapter\Polyfill\NotSupportingVisibilityTrait;
8 9
 use League\Flysystem\Config;
9
-use Exception;
10 10
 
11 11
 class DropboxAdapter extends AbstractAdapter
12 12
 {
Please login to merge, or discard this patch.