@@ -30,7 +30,6 @@ |
||
30 | 30 | use OCP\Authentication\IAuthModule; |
31 | 31 | use OCP\IRequest; |
32 | 32 | use OCP\ISession; |
33 | -use OCP\IUser; |
|
34 | 33 | use OCP\IUserManager; |
35 | 34 | use OCP\Session\Exceptions\SessionNotAvailableException; |
36 | 35 |
@@ -113,6 +113,8 @@ |
||
113 | 113 | * INTERNAL USE ONLY!! This method isn't part of the IManager interface |
114 | 114 | * @internal This should only be used by the RegisterNotifierEventImpl (the real implementation). |
115 | 115 | * Do NOT use this method outside as it might not work as expected. |
116 | + * @param string $id |
|
117 | + * @param string $name |
|
116 | 118 | */ |
117 | 119 | public function registerBuiltNotifier(INotifier $notifier, $id, $name) { |
118 | 120 | if (!isset($this->builtNotifiersHolder[$id]) && !isset($this->notifiersInfo[$id])) { |
@@ -134,7 +134,6 @@ |
||
134 | 134 | * @NoAdminRequired |
135 | 135 | * @NoSubadminRequired |
136 | 136 | * |
137 | - * @param string $domain Domain to remove |
|
138 | 137 | * @return RedirectResponse Redirection to the settings page. |
139 | 138 | */ |
140 | 139 | public function removeDomain($id) { |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | /** |
281 | 281 | * @param Connection $fromDB |
282 | 282 | * @param Connection $toDB |
283 | - * @param $app |
|
283 | + * @param string $app |
|
284 | 284 | * @throws \Exception |
285 | 285 | * @throws \OC\NeedsUpdateException |
286 | 286 | */ |
@@ -410,7 +410,7 @@ discard block |
||
410 | 410 | |
411 | 411 | /** |
412 | 412 | * @param Table $table |
413 | - * @return mixed |
|
413 | + * @return string[] |
|
414 | 414 | */ |
415 | 415 | protected function getColumnTypes(Table $table) { |
416 | 416 | $tableName = $table->getName(); |
@@ -109,8 +109,8 @@ |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
112 | - * @param $controller |
|
113 | - * @param $methodName |
|
112 | + * @param Controller $controller |
|
113 | + * @param string $methodName |
|
114 | 114 | * @throws TwoFactorAuthRequiredException |
115 | 115 | * @throws UserAlreadyLoggedInException |
116 | 116 | */ |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | * @param string $userId |
275 | 275 | * @param string $domain |
276 | 276 | * @param \OCP\IConfig $config |
277 | - * @param array $headers |
|
277 | + * @param string[] $headers |
|
278 | 278 | * |
279 | 279 | * Format of $headers: |
280 | 280 | * Array [ |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | * This function adds the CORS headers for all domains |
319 | 319 | * |
320 | 320 | * @param Sabre\HTTP\ResponseInterface $response |
321 | - * @param Array $headers |
|
321 | + * @param string[] $headers |
|
322 | 322 | * |
323 | 323 | * Format of $headers: |
324 | 324 | * Array [ |
@@ -39,11 +39,8 @@ |
||
39 | 39 | use OC\Settings\Controller\AuthSettingsController; |
40 | 40 | use OC\Settings\Controller\CertificateController; |
41 | 41 | use OC\Settings\Controller\CheckSetupController; |
42 | -use OC\Settings\Controller\GroupsController; |
|
43 | 42 | use OC\Settings\Controller\LogSettingsController; |
44 | 43 | use OC\Settings\Controller\MailSettingsController; |
45 | -use OC\Settings\Controller\UsersController; |
|
46 | -use OC\Settings\Middleware\SubadminMiddleware; |
|
47 | 44 | use OCP\AppFramework\App; |
48 | 45 | use OCP\IContainer; |
49 | 46 | use OCP\Util; |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | |
174 | 174 | /** |
175 | 175 | * @param Node $node |
176 | - * @param $correctChecksum |
|
176 | + * @param string $correctChecksum |
|
177 | 177 | * @throws NotFoundException |
178 | 178 | * @throws \OCP\Files\InvalidPathException |
179 | 179 | * @throws \OCP\Files\StorageNotAvailableException |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | } |
189 | 189 | |
190 | 190 | /** |
191 | - * @param $path |
|
191 | + * @param string $path |
|
192 | 192 | * @param IStorage $storage |
193 | 193 | * @return string |
194 | 194 | * @throws \OCP\Files\StorageNotAvailableException |
@@ -172,6 +172,10 @@ |
||
172 | 172 | 'data' => ['sharedSecret' => $sharedSecret]]; |
173 | 173 | } |
174 | 174 | |
175 | + /** |
|
176 | + * @param string $url |
|
177 | + * @param string $token |
|
178 | + */ |
|
175 | 179 | protected function isValidToken($url, $token) { |
176 | 180 | $storedToken = $this->dbHandler->getToken($url); |
177 | 181 | return \hash_equals($storedToken, $token); |