@@ -47,7 +47,7 @@ |
||
47 | 47 | |
48 | 48 | /** |
49 | 49 | * @throws \Sabre\DAV\Exception\Forbidden |
50 | - * @return bool |
|
50 | + * @return false|null |
|
51 | 51 | */ |
52 | 52 | public function handleAnonymousOptions(RequestInterface $request, ResponseInterface $response) { |
53 | 53 | if ($request->getMethod() === 'OPTIONS' && $request->getPath() === '') { |
@@ -238,7 +238,6 @@ discard block |
||
238 | 238 | /** |
239 | 239 | * Get all available apps in a category |
240 | 240 | * |
241 | - * @param string $category |
|
242 | 241 | * @return JSONResponse |
243 | 242 | * @throws \Exception |
244 | 243 | */ |
@@ -415,7 +414,7 @@ discard block |
||
415 | 414 | * apps will be enabled for specific groups only if $groups is defined |
416 | 415 | * |
417 | 416 | * @PasswordConfirmationRequired |
418 | - * @param array $appIds |
|
417 | + * @param string[] $appIds |
|
419 | 418 | * @param array $groups |
420 | 419 | * @return JSONResponse |
421 | 420 | */ |
@@ -479,7 +478,7 @@ discard block |
||
479 | 478 | /** |
480 | 479 | * @PasswordConfirmationRequired |
481 | 480 | * |
482 | - * @param array $appIds |
|
481 | + * @param string[] $appIds |
|
483 | 482 | * @return JSONResponse |
484 | 483 | */ |
485 | 484 | public function disableApps(array $appIds): JSONResponse { |
@@ -96,7 +96,6 @@ |
||
96 | 96 | * \OC\User\Database constructor. |
97 | 97 | * |
98 | 98 | * @param EventDispatcher $eventDispatcher |
99 | - * @param string $table |
|
100 | 99 | */ |
101 | 100 | public function __construct($eventDispatcher = null) { |
102 | 101 | $this->cache = new CappedMemoryCache(); |
@@ -102,7 +102,7 @@ |
||
102 | 102 | * @param ILogger $logger |
103 | 103 | * @param ITimeFactory $timeFactory |
104 | 104 | * @param L10NFactory $l10nFactory |
105 | - * @param IUrlGenerator $urlGenerator |
|
105 | + * @param IURLGenerator $urlGenerator |
|
106 | 106 | * @param Defaults $defaults |
107 | 107 | * @param ISecureRandom $random |
108 | 108 | * @param IDBConnection $db |