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 — develop ( cfd982...0d072b )
by James
09:51 queued 10s
created
app/Api/V1/Controllers/AttachmentController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     {
60 60
         parent::__construct();
61 61
         $this->middleware(
62
-            function ($request, $next) {
62
+            function($request, $next) {
63 63
                 /** @var User $user */
64 64
                 $user             = auth()->user();
65 65
                 $this->repository = app(AttachmentRepositoryInterface::class);
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
             if ('' === $content) {
109 109
                 throw new FireflyException(trans('api.error_no_upload'));
110 110
             }
111
-            $quoted  = sprintf('"%s"', addcslashes(basename($attachment->filename), '"\\'));
111
+            $quoted = sprintf('"%s"', addcslashes(basename($attachment->filename), '"\\'));
112 112
 
113 113
             /** @var LaravelResponse $response */
114 114
             $response = response($content);
Please login to merge, or discard this patch.