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 — develop (#371)
by Dane
02:54
created
app/Repositories/Daemon/CommandRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     /**
41 41
      * Constuctor for repository.
42 42
      *
43
-     * @param  int|\Pterodactyl\Models\Server  $server
43
+     * @param  Models\Server  $server
44 44
      * @return void
45 45
      */
46 46
     public function __construct($server)
Please login to merge, or discard this patch.
app/Services/DeploymentService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
      * @param  \Pterodactyl\Models\Node $node
114 114
      * @param  int                      $memory
115 115
      * @param  int                      $disk
116
-     * @return bool Returns true if this information would not put the node over it's limit.
116
+     * @return boolean|null Returns true if this information would not put the node over it's limit.
117 117
      */
118 118
     protected static function checkNodeAllocation(Models\Node $node, $memory, $disk)
119 119
     {
Please login to merge, or discard this patch.
app/Providers/AuthServiceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
     /**
20 20
      * Register any application authentication / authorization services.
21 21
      *
22
-     * @param  \Illuminate\Contracts\Auth\Access\Gate  $gate
23 22
      * @return void
24 23
      */
25 24
     public function boot()
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Pterodactyl\Exceptions;
4 4
 
5
-use Log;
6 5
 use Exception;
7
-use DisplayException;
8 6
 use Illuminate\Auth\AuthenticationException;
9 7
 use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
10 8
 
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/OptionController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * Handles POST request to create a new option.
57 57
      *
58 58
      * @param  \Illuminate\Http\Request  $request
59
-     * @return \Illuminate\Response\RedirectResponse
59
+     * @return \Illuminate\Http\RedirectResponse
60 60
      */
61 61
     public function store(Request $request)
62 62
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/PackController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      * Handle create pack request and route user to location.
85 85
      *
86 86
      * @param  \Illuminate\Http\Request  $request
87
-     * @return \Illuminate\View\View
87
+     * @return \Illuminate\Http\RedirectResponse
88 88
      */
89 89
     public function store(Request $request)
90 90
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/ServersController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      * Create server controller method.
85 85
      *
86 86
      * @param  \Illuminate\Http\Request  $request
87
-     * @return \Illuminate\Response\RedirectResponse
87
+     * @return \Illuminate\Http\RedirectResponse
88 88
      */
89 89
     public function store(Request $request)
90 90
     {
Please login to merge, or discard this patch.
app/Http/Controllers/API/User/ServerController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 use Fractal;
28 28
 use Illuminate\Http\Request;
29 29
 use Pterodactyl\Models\Server;
30
-use GuzzleHttp\Exception\ConnectException;
31 30
 use Pterodactyl\Http\Controllers\Controller;
32 31
 use Pterodactyl\Transformers\User\ServerTransformer;
33 32
 use Pterodactyl\Repositories\Daemon\PowerRepository;
Please login to merge, or discard this patch.
app/Http/Middleware/HMACAuthorization.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -28,13 +28,11 @@
 block discarded – undo
28 28
 use Crypt;
29 29
 use Config;
30 30
 use Closure;
31
-use Response;
32 31
 use Debugbar;
33 32
 use IPTools\IP;
34 33
 use IPTools\Range;
35 34
 use Illuminate\Http\Request;
36 35
 use Pterodactyl\Models\APIKey;
37
-use Pterodactyl\Models\APIPermission;
38 36
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; // 400
39 37
 use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; // 403
40 38
 
Please login to merge, or discard this patch.