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 ( 5e2777...0312c9 )
by Dane
02:57
created
app/Exceptions/DisplayException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      * Exception constructor.
33 33
      *
34 34
      * @param  string  $message
35
-     * @param  mixed   $log
35
+     * @param  \GuzzleHttp\Exception\TransferException   $log
36 36
      * @return void
37 37
      */
38 38
     public function __construct($message, $log = null)
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 create(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 create(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
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
      * Create server controller method.
87 87
      *
88 88
      * @param  \Illuminate\Http\Request  $request
89
-     * @return \Illuminate\Response\RedirectResponse
89
+     * @return \Illuminate\Http\RedirectResponse
90 90
      */
91 91
     public function create(Request $request)
92 92
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Server/ServerController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
      * @param  \Illuminate\Http\Request  $request
170 170
      * @param  string                    $uuid
171 171
      * @param  string                    $file
172
-     * @return \Illuminate\View\View
172
+     * @return \Illuminate\Http\RedirectResponse
173 173
      */
174 174
     public function getDownloadFile(Request $request, $uuid, $file)
175 175
     {
Please login to merge, or discard this patch.
app/Policies/ServerPolicy.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      *
72 72
      * @param  \Pterodactyl\Models\User $user
73 73
      * @param  string $ability
74
-     * @return bool
74
+     * @return boolean|null
75 75
      */
76 76
     public function before(User $user, $ability)
77 77
     {
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
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      * Constructor for API Repository.
107 107
      *
108 108
      * @param  null|\Pterodactyl\Models\User  $user
109
-     * @return void
109
+     * @return string
110 110
      */
111 111
     public function __construct(Models\User $user = null)
112 112
     {
Please login to merge, or discard this patch.
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/Repositories/Daemon/FileRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * Constructor.
44 44
      *
45 45
      * @param  string  $uuid
46
-     * @return void
46
+     * @return string
47 47
      */
48 48
     public function __construct($uuid)
49 49
     {
Please login to merge, or discard this patch.