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 ( ae6b0f...6dc1c1 )
by Dane
02:55
created
app/Transformers/Admin/ServerTransformer.php 1 patch
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * Setup request object for transformer.
59 59
      *
60 60
      * @param  \Illuminate\Http\Request|bool  $request
61
-     * @return void
61
+     * @return callable
62 62
      */
63 63
     public function __construct($request = false)
64 64
     {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * Return a generic array of allocations for this server.
84 84
      *
85
-     * @return \Leauge\Fractal\Resource\Collection
85
+     * @return null|\League\Fractal\Resource\Collection
86 86
      */
87 87
     public function includeAllocations(Server $server)
88 88
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     /**
97 97
      * Return a generic array of data about subusers for this server.
98 98
      *
99
-     * @return \Leauge\Fractal\Resource\Collection
99
+     * @return null|\League\Fractal\Resource\Collection
100 100
      */
101 101
     public function includeSubusers(Server $server)
102 102
     {
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     /**
111 111
      * Return a generic array of data about subusers for this server.
112 112
      *
113
-     * @return \Leauge\Fractal\Resource\Item
113
+     * @return null|\League\Fractal\Resource\Item
114 114
      */
115 115
     public function includeUser(Server $server)
116 116
     {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     /**
125 125
      * Return a generic array with pack information for this server.
126 126
      *
127
-     * @return \Leauge\Fractal\Resource\Item
127
+     * @return null|\League\Fractal\Resource\Item
128 128
      */
129 129
     public function includePack(Server $server)
130 130
     {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     /**
139 139
      * Return a generic array with service information for this server.
140 140
      *
141
-     * @return \Leauge\Fractal\Resource\Item
141
+     * @return null|\League\Fractal\Resource\Item
142 142
      */
143 143
     public function includeService(Server $server)
144 144
     {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     /**
153 153
      * Return a generic array with service option information for this server.
154 154
      *
155
-     * @return \Leauge\Fractal\Resource\Item
155
+     * @return null|\League\Fractal\Resource\Item
156 156
      */
157 157
     public function includeOption(Server $server)
158 158
     {
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     /**
167 167
      * Return a generic array of data about subusers for this server.
168 168
      *
169
-     * @return \Leauge\Fractal\Resource\Collection
169
+     * @return null|\League\Fractal\Resource\Collection
170 170
      */
171 171
     public function includeVariables(Server $server)
172 172
     {
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
     /**
181 181
      * Return a generic array with pack information for this server.
182 182
      *
183
-     * @return \Leauge\Fractal\Resource\Item
183
+     * @return null|\League\Fractal\Resource\Item
184 184
      */
185 185
     public function includeLocation(Server $server)
186 186
     {
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
     /**
195 195
      * Return a generic array with pack information for this server.
196 196
      *
197
-     * @return \Leauge\Fractal\Resource\Item|void
197
+     * @return null|\League\Fractal\Resource\Item
198 198
      */
199 199
     public function includeNode(Server $server)
200 200
     {
Please login to merge, or discard this patch.
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.