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 — develop ( a52d9e...9343ac )
by Dane
02:58
created
app/Transformers/Admin/ServerVariableTransformer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * Setup request object for transformer.
49 49
      *
50 50
      * @param  \Illuminate\Http\Request|bool  $request
51
-     * @return void
51
+     * @return callable
52 52
      */
53 53
     public function __construct($request = false)
54 54
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Return the parent service variable data.
74 74
      *
75
-     * @return \Leauge\Fractal\Resource\Item
75
+     * @return null|\League\Fractal\Resource\Item
76 76
      */
77 77
     public function includeParent(ServerVariable $variable)
78 78
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/ServiceTransformer.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * Setup request object for transformer.
53 53
      *
54 54
      * @param  \Illuminate\Http\Request|bool  $request
55
-     * @return void
55
+     * @return callable
56 56
      */
57 57
     public function __construct($request = false)
58 58
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Return the the service options.
78 78
      *
79
-     * @return \Leauge\Fractal\Resource\Collection
79
+     * @return null|\League\Fractal\Resource\Collection
80 80
      */
81 81
     public function includeOptions(Service $service)
82 82
     {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * Return the servers associated with this service.
92 92
      *
93
-     * @return \Leauge\Fractal\Resource\Collection
93
+     * @return null|\League\Fractal\Resource\Collection
94 94
      */
95 95
     public function includeServers(Service $service)
96 96
     {
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * Return the packs associated with this service.
106 106
      *
107
-     * @return \Leauge\Fractal\Resource\Collection
107
+     * @return null|\League\Fractal\Resource\Collection
108 108
      */
109 109
     public function includePacks(Service $service)
110 110
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/ServiceVariableTransformer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      * Setup request object for transformer.
49 49
      *
50 50
      * @param  \Illuminate\Http\Request|bool  $request
51
-     * @return void
51
+     * @return callable
52 52
      */
53 53
     public function __construct($request = false)
54 54
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Return the server variables associated with this variable.
74 74
      *
75
-     * @return \Leauge\Fractal\Resource\Collection
75
+     * @return null|\League\Fractal\Resource\Collection
76 76
      */
77 77
     public function includeVariables(ServiceVariable $variable)
78 78
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/SubuserTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * Setup request object for transformer.
43 43
      *
44 44
      * @param  \Illuminate\Http\Request|bool  $request
45
-     * @return void
45
+     * @return callable
46 46
      */
47 47
     public function __construct($request = false)
48 48
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/UserTransformer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * Setup request object for transformer.
52 52
      *
53 53
      * @param  \Illuminate\Http\Request|bool  $request
54
-     * @return void
54
+     * @return callable
55 55
      */
56 56
     public function __construct($request = false)
57 57
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     /**
76 76
      * Return the servers associated with this user.
77 77
      *
78
-     * @return \Leauge\Fractal\Resource\Collection
78
+     * @return null|\League\Fractal\Resource\Collection
79 79
      */
80 80
     public function includeServers(User $user)
81 81
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * Return the servers that this user can access.
91 91
      *
92
-     * @return \Leauge\Fractal\Resource\Collection
92
+     * @return null|\League\Fractal\Resource\Collection
93 93
      */
94 94
     public function includeAccess(User $user)
95 95
     {
Please login to merge, or discard this patch.
app/Transformers/User/AllocationTransformer.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
      * Setup allocation transformer with access to server data.
42 42
      *
43
-     * @return void
43
+     * @return callable
44 44
      */
45 45
     public function __construct(Server $server)
46 46
     {
Please login to merge, or discard this patch.
app/Transformers/User/ServerTransformer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Return a generic array of allocations for this server.
69 69
      *
70
-     * @return \Leauge\Fractal\Resource\Collection
70
+     * @return \League\Fractal\Resource\Collection
71 71
      */
72 72
     public function includeAllocations(Server $server)
73 73
     {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Return a generic array of subusers for this server.
81 81
      *
82
-     * @return \Leauge\Fractal\Resource\Collection
82
+     * @return \League\Fractal\Resource\Collection
83 83
      */
84 84
     public function includeSubusers(Server $server)
85 85
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Return a generic array of allocations for this server.
93 93
      *
94
-     * @return \Leauge\Fractal\Resource\Item
94
+     * @return \League\Fractal\Resource\Item
95 95
      */
96 96
     public function includeStats(Server $server)
97 97
     {
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Pterodactyl\Exceptions;
4 4
 
5
-use Log;
6 5
 use Exception;
7 6
 use Illuminate\Auth\AuthenticationException;
8 7
 use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
Please login to merge, or discard this patch.
app/Models/Server.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     /**
151 151
      * Returns non-administrative headers for accessing a server on the daemon.
152 152
      *
153
-     * @param  Pterodactyl\Models\User|null  $user
153
+     * @param  null|User  $user
154 154
      * @return array
155 155
      */
156 156
     public function guzzleHeaders(User $user = null)
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     /**
171 171
      * Return an instance of the Guzzle client for this specific server using defined access token.
172 172
      *
173
-     * @param  Pterodactyl\Models\User|null  $user
173
+     * @param  null|User  $user
174 174
      * @return \GuzzleHttp\Client
175 175
      */
176 176
     public function guzzleClient(User $user = null)
Please login to merge, or discard this patch.