@@ -42,6 +42,7 @@ discard block |
||
42 | 42 | /** |
43 | 43 | * Create a new notification instance. |
44 | 44 | * |
45 | + * @param string $token |
|
45 | 46 | * @return void |
46 | 47 | */ |
47 | 48 | public function __construct($token) |
@@ -53,7 +54,7 @@ discard block |
||
53 | 54 | * Get the notification's delivery channels. |
54 | 55 | * |
55 | 56 | * @param mixed $notifiable |
56 | - * @return array |
|
57 | + * @return string[] |
|
57 | 58 | */ |
58 | 59 | public function via($notifiable) |
59 | 60 | { |
@@ -65,7 +65,6 @@ |
||
65 | 65 | /** |
66 | 66 | * Constructor. |
67 | 67 | * |
68 | - * @param string $server The server Short UUID |
|
69 | 68 | */ |
70 | 69 | public function __construct($uuid) |
71 | 70 | { |
@@ -25,7 +25,6 @@ |
||
25 | 25 | namespace Pterodactyl\Repositories\Daemon; |
26 | 26 | |
27 | 27 | use Exception; |
28 | -use GuzzleHttp\Client; |
|
29 | 28 | use Pterodactyl\Models\Server; |
30 | 29 | use Pterodactyl\Exceptions\DisplayException; |
31 | 30 | use Pterodactyl\Repositories\HelperRepository; |
@@ -35,6 +35,9 @@ |
||
35 | 35 | // |
36 | 36 | } |
37 | 37 | |
38 | + /** |
|
39 | + * @param string $error |
|
40 | + */ |
|
38 | 41 | public static function log(Request $request, $error = null, $authorized = false) |
39 | 42 | { |
40 | 43 | if ($request->bearerToken() && ! empty($request->bearerToken())) { |
@@ -24,7 +24,6 @@ |
||
24 | 24 | |
25 | 25 | namespace Pterodactyl\Http\Controllers\Admin; |
26 | 26 | |
27 | -use DB; |
|
28 | 27 | use Log; |
29 | 28 | use Alert; |
30 | 29 | use Storage; |
@@ -24,7 +24,6 @@ |
||
24 | 24 | |
25 | 25 | namespace Pterodactyl\Http\Controllers\Admin; |
26 | 26 | |
27 | -use DB; |
|
28 | 27 | use Log; |
29 | 28 | use Alert; |
30 | 29 | use Storage; |
@@ -26,7 +26,6 @@ |
||
26 | 26 | namespace Pterodactyl\Http\Controllers\Base; |
27 | 27 | |
28 | 28 | use Illuminate\Http\Request; |
29 | -use Pterodactyl\Models\Server; |
|
30 | 29 | use Pterodactyl\Http\Controllers\Controller; |
31 | 30 | |
32 | 31 | class IndexController extends Controller |
@@ -133,7 +133,6 @@ |
||
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() |
@@ -29,7 +29,6 @@ |
||
29 | 29 | use Alert; |
30 | 30 | use Illuminate\Http\Request; |
31 | 31 | use Pterodactyl\Models\User; |
32 | -use Pterodactyl\Models\Server; |
|
33 | 32 | use Pterodactyl\Exceptions\DisplayException; |
34 | 33 | use Pterodactyl\Http\Controllers\Controller; |
35 | 34 | use Pterodactyl\Repositories\UserRepository; |
@@ -116,7 +116,7 @@ |
||
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 | { |