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 (#286)
by Dane
02:56
created
app/Models/Server.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,6 @@
 block discarded – undo
133 133
     /**
134 134
      * Returns non-administrative headers for accessing a server on the daemon.
135 135
      *
136
-     * @param  string $uuid
137 136
      * @return array
138 137
      */
139 138
     public function guzzleHeaders()
Please login to merge, or discard this patch.
app/Repositories/DatabaseRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
      * Updates the password for a given database.
117 117
      * @param  int $id The ID of the database to modify.
118 118
      * @param  string $password The new password to use for the database.
119
-     * @return bool
119
+     * @return boolean|null
120 120
      */
121 121
     public function modifyPassword($id, $password)
122 122
     {
Please login to merge, or discard this patch.
app/Repositories/UserRepository.php 1 patch
Doc Comments   +2 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,11 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Creates a user on the panel. Returns the created user's ID.
49 49
      *
50
-     * @param  string       $email
51
-     * @param  string|null  $password An unhashed version of the user's password.
52
-     * @param  bool         $admin    Boolean value if user should be an admin or not.
53
-     * @param  int          $token    A custom user ID.
54
-     * @return bool|int
50
+     * @return Models\User
55 51
      */
56 52
     public function create(array $data)
57 53
     {
@@ -163,7 +159,7 @@  discard block
 block discarded – undo
163 159
      * Deletes a user on the panel, returns the number of records deleted.
164 160
      *
165 161
      * @param  int $id
166
-     * @return int
162
+     * @return boolean
167 163
      */
168 164
     public function delete($id)
169 165
     {
Please login to merge, or discard this patch.
app/Policies/ServerPolicy.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      *
45 45
      * @param \Pterodactyl\Models\User   $user
46 46
      * @param \Pterodactyl\Models\Server $server
47
-     * @param $permission
47
+     * @param string $permission
48 48
      * @return bool
49 49
      */
50 50
     private function checkPermission(User $user, Server $server, $permission)
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * @param  \Pterodactyl\Models\User $user
75 75
      * @param  string $ability
76
-     * @return bool
76
+     * @return boolean|null
77 77
      */
78 78
     public function before(User $user, $ability)
79 79
     {
Please login to merge, or discard this patch.