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 ( 605c91...d919b2 )
by Dane
02:57
created
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/Repositories/APIRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      * Constructor for API Repository.
56 56
      *
57 57
      * @param  null|\Pterodactyl\Models\User  $user
58
-     * @return void
58
+     * @return string
59 59
      */
60 60
     public function __construct(User $user = null)
61 61
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/AllocationTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      *
50 50
      * @param  \Illuminate\Http\Request|bool  $request
51 51
      * @param  bool                           $filter
52
-     * @return void
52
+     * @return callable
53 53
      */
54 54
     public function __construct($request = false, $filter = false)
55 55
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/LocationTransformer.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 nodes associated with this location.
77 77
      *
78
-     * @return \Leauge\Fractal\Resource\Collection
78
+     * @return null|\League\Fractal\Resource\Collection
79 79
      */
80 80
     public function includeServers(Location $location)
81 81
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * Return the nodes associated with this location.
91 91
      *
92
-     * @return \Leauge\Fractal\Resource\Collection
92
+     * @return null|\League\Fractal\Resource\Collection
93 93
      */
94 94
     public function includeNodes(Location $location)
95 95
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/NodeTransformer.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 nodes associated with this location.
78 78
      *
79
-     * @return \Leauge\Fractal\Resource\Collection
79
+     * @return null|\League\Fractal\Resource\Collection
80 80
      */
81 81
     public function includeAllocations(Node $node)
82 82
     {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * Return the nodes associated with this location.
92 92
      *
93
-     * @return \Leauge\Fractal\Resource\Item
93
+     * @return null|\League\Fractal\Resource\Item
94 94
      */
95 95
     public function includeLocation(Node $node)
96 96
     {
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * Return the nodes associated with this location.
106 106
      *
107
-     * @return \Leauge\Fractal\Resource\Collection
107
+     * @return null|\League\Fractal\Resource\Collection
108 108
      */
109 109
     public function includeServers(Node $node)
110 110
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/OptionTransformer.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      * Setup request object for transformer.
54 54
      *
55 55
      * @param  \Illuminate\Http\Request|bool  $request
56
-     * @return void
56
+     * @return callable
57 57
      */
58 58
     public function __construct($request = false)
59 59
     {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Return the parent service for this service option.
79 79
      *
80
-     * @return \Leauge\Fractal\Resource\Collection
80
+     * @return null|\League\Fractal\Resource\Item
81 81
      */
82 82
     public function includeService(ServiceOption $option)
83 83
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Return the packs associated with this service option.
93 93
      *
94
-     * @return \Leauge\Fractal\Resource\Collection
94
+     * @return null|\League\Fractal\Resource\Collection
95 95
      */
96 96
     public function includePacks(ServiceOption $option)
97 97
     {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     /**
106 106
      * Return the servers associated with this service option.
107 107
      *
108
-     * @return \Leauge\Fractal\Resource\Collection
108
+     * @return null|\League\Fractal\Resource\Collection
109 109
      */
110 110
     public function includeServers(ServiceOption $option)
111 111
     {
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     /**
120 120
      * Return the variables for this service option.
121 121
      *
122
-     * @return \Leauge\Fractal\Resource\Collection
122
+     * @return null|\League\Fractal\Resource\Collection
123 123
      */
124 124
     public function includeVariables(ServiceOption $option)
125 125
     {
Please login to merge, or discard this patch.
app/Transformers/Admin/PackTransformer.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
     {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Return the packs associated with this service.
81 81
      *
82
-     * @return \Leauge\Fractal\Resource\Item
82
+     * @return null|\League\Fractal\Resource\Item
83 83
      */
84 84
     public function includeOption(Pack $pack)
85 85
     {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      * Return the packs associated with this service.
95 95
      *
96
-     * @return \Leauge\Fractal\Resource\Collection
96
+     * @return null|\League\Fractal\Resource\Collection
97 97
      */
98 98
     public function includeServers(Pack $pack)
99 99
     {
Please login to merge, or discard this patch.
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.