@@ -141,7 +141,7 @@ |
||
| 141 | 141 | * Check if the provided user has TOTP enabled. |
| 142 | 142 | * |
| 143 | 143 | * @param \Illuminate\Http\Request $request |
| 144 | - * @return \Illuminate\Http\Response |
|
| 144 | + * @return \Illuminate\Http\JsonResponse |
|
| 145 | 145 | */ |
| 146 | 146 | public function checkTotp(Request $request) |
| 147 | 147 | { |
@@ -90,7 +90,7 @@ |
||
| 90 | 90 | /** |
| 91 | 91 | * Determines if a user has permissions. |
| 92 | 92 | * |
| 93 | - * @return bool |
|
| 93 | + * @return \Illuminate\Database\Eloquent\Relations\HasMany |
|
| 94 | 94 | */ |
| 95 | 95 | public function permissions() |
| 96 | 96 | { |
@@ -47,10 +47,6 @@ discard block |
||
| 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 | 50 | * @return bool|int |
| 55 | 51 | */ |
| 56 | 52 | public function create(array $data) |
@@ -167,7 +163,7 @@ discard block |
||
| 167 | 163 | * Deletes a user on the panel, returns the number of records deleted. |
| 168 | 164 | * |
| 169 | 165 | * @param int $id |
| 170 | - * @return int |
|
| 166 | + * @return boolean |
|
| 171 | 167 | */ |
| 172 | 168 | public function delete($id) |
| 173 | 169 | { |