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
Pull Request — master (#153)
by
unknown
01:23
created
src/ResponseCache.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Spatie\ResponseCache;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use Symfony\Component\HttpFoundation\Response;
7 6
 use Spatie\ResponseCache\CacheProfiles\CacheProfile;
7
+use Symfony\Component\HttpFoundation\Response;
8 8
 
9 9
 class ResponseCache
10 10
 {
Please login to merge, or discard this patch.
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,6 @@
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
-     * @param string|array $uris
117 116
      */
118 117
     public function forgetByPrefix($prefix): self
119 118
     {
Please login to merge, or discard this patch.
src/ResponseSerializer.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\ResponseCache;
4 4
 
5
-use Symfony\Component\HttpFoundation\Response;
6 5
 use Spatie\ResponseCache\Exceptions\CouldNotUnserialize;
7 6
 use Symfony\Component\HttpFoundation\BinaryFileResponse;
7
+use Symfony\Component\HttpFoundation\Response;
8 8
 
9 9
 class ResponseSerializer
10 10
 {
Please login to merge, or discard this patch.
src/ResponseCacheServiceProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 use Illuminate\Cache\Repository;
6 6
 use Illuminate\Container\Container;
7 7
 use Illuminate\Support\ServiceProvider;
8
+use Spatie\ResponseCache\CacheProfiles\CacheProfile;
8 9
 use Spatie\ResponseCache\Commands\Clear;
9 10
 use Spatie\ResponseCache\Commands\Flush;
10
-use Spatie\ResponseCache\CacheProfiles\CacheProfile;
11 11
 
12 12
 class ResponseCacheServiceProvider extends ServiceProvider
13 13
 {
Please login to merge, or discard this patch.