@@ -89,6 +89,9 @@ discard block |
||
| 89 | 89 | return $this->getMountsFromQuery($query); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | + /** |
|
| 93 | + * @param string $userId |
|
| 94 | + */ |
|
| 92 | 95 | public function getMountsForUser($userId, $groupIds) { |
| 93 | 96 | $builder = $this->connection->getQueryBuilder(); |
| 94 | 97 | $query = $builder->select(['m.mount_id', 'mount_point', 'storage_backend', 'auth_backend', 'priority', 'm.type']) |
@@ -125,6 +128,10 @@ discard block |
||
| 125 | 128 | return $this->getMountsFromQuery($query); |
| 126 | 129 | } |
| 127 | 130 | |
| 131 | + /** |
|
| 132 | + * @param integer $type |
|
| 133 | + * @param string|null $value |
|
| 134 | + */ |
|
| 128 | 135 | protected function getForQuery(IQueryBuilder $builder, $type, $value) { |
| 129 | 136 | $query = $builder->select(['m.mount_id', 'mount_point', 'storage_backend', 'auth_backend', 'priority', 'm.type']) |
| 130 | 137 | ->from('external_mounts', 'm') |
@@ -332,6 +339,9 @@ discard block |
||
| 332 | 339 | } |
| 333 | 340 | } |
| 334 | 341 | |
| 342 | + /** |
|
| 343 | + * @param integer $mountId |
|
| 344 | + */ |
|
| 335 | 345 | public function addApplicable($mountId, $type, $value) { |
| 336 | 346 | $this->connection->insertIfNotExist('*PREFIX*external_applicable', [ |
| 337 | 347 | 'mount_id' => $mountId, |
@@ -340,6 +350,9 @@ discard block |
||
| 340 | 350 | ], ['mount_id', 'type', 'value']); |
| 341 | 351 | } |
| 342 | 352 | |
| 353 | + /** |
|
| 354 | + * @param integer $mountId |
|
| 355 | + */ |
|
| 343 | 356 | public function removeApplicable($mountId, $type, $value) { |
| 344 | 357 | $builder = $this->connection->getQueryBuilder(); |
| 345 | 358 | $query = $builder->delete('external_applicable') |
@@ -473,6 +486,9 @@ discard block |
||
| 473 | 486 | return array_combine($keys, $values); |
| 474 | 487 | } |
| 475 | 488 | |
| 489 | + /** |
|
| 490 | + * @param string $value |
|
| 491 | + */ |
|
| 476 | 492 | private function encryptValue($value) { |
| 477 | 493 | return $this->crypto->encrypt($value); |
| 478 | 494 | } |
@@ -24,16 +24,13 @@ |
||
| 24 | 24 | |
| 25 | 25 | namespace OCA\Federation\AppInfo; |
| 26 | 26 | |
| 27 | -use OCA\Federation\API\OCSAuthAPI; |
|
| 28 | 27 | use OCA\Federation\Controller\SettingsController; |
| 29 | 28 | use OCA\Federation\DAV\FedAuth; |
| 30 | 29 | use OCA\Federation\DbHandler; |
| 31 | 30 | use OCA\Federation\Hooks; |
| 32 | 31 | use OCA\Federation\Middleware\AddServerMiddleware; |
| 33 | 32 | use OCA\Federation\SyncFederationAddressBooks; |
| 34 | -use OCA\Federation\SyncJob; |
|
| 35 | 33 | use OCA\Federation\TrustedServers; |
| 36 | -use OCP\API; |
|
| 37 | 34 | use OCP\App; |
| 38 | 35 | use OCP\AppFramework\IAppContainer; |
| 39 | 36 | use OCP\SabrePluginEvent; |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | /** |
| 25 | 25 | * BaseResponse constructor. |
| 26 | 26 | * |
| 27 | - * @param DataResponse|null $dataResponse |
|
| 27 | + * @param DataResponse $dataResponse |
|
| 28 | 28 | * @param string $format |
| 29 | 29 | * @param string|null $statusMessage |
| 30 | 30 | * @param int|null $itemsCount |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | /** |
| 130 | 130 | * returns the registerd classes in the given table |
| 131 | 131 | * |
| 132 | - * @param $table |
|
| 132 | + * @param string $table |
|
| 133 | 133 | * @return string[] |
| 134 | 134 | */ |
| 135 | 135 | private function getClasses($table) { |
@@ -225,6 +225,11 @@ discard block |
||
| 225 | 225 | ); |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | + /** |
|
| 229 | + * @param string $table |
|
| 230 | + * @param string $idCol |
|
| 231 | + * @param string $id |
|
| 232 | + */ |
|
| 228 | 233 | private function update($table, $idCol, $id, $values) { |
| 229 | 234 | $query = $this->dbc->getQueryBuilder(); |
| 230 | 235 | $query->update($table); |
@@ -275,8 +280,8 @@ discard block |
||
| 275 | 280 | /** |
| 276 | 281 | * deletes an settings or admin entry from the given table |
| 277 | 282 | * |
| 278 | - * @param $table |
|
| 279 | - * @param $className |
|
| 283 | + * @param string $table |
|
| 284 | + * @param string $className |
|
| 280 | 285 | */ |
| 281 | 286 | private function remove($table, $className) { |
| 282 | 287 | $query = $this->dbc->getQueryBuilder(); |
@@ -362,6 +367,9 @@ discard block |
||
| 362 | 367 | return $sections; |
| 363 | 368 | } |
| 364 | 369 | |
| 370 | + /** |
|
| 371 | + * @param string $section |
|
| 372 | + */ |
|
| 365 | 373 | private function getBuiltInAdminSettings($section) { |
| 366 | 374 | $forms = []; |
| 367 | 375 | try { |
@@ -401,6 +409,9 @@ discard block |
||
| 401 | 409 | return $forms; |
| 402 | 410 | } |
| 403 | 411 | |
| 412 | + /** |
|
| 413 | + * @param string $section |
|
| 414 | + */ |
|
| 404 | 415 | private function getAdminSettingsFromDB($section, &$settings) { |
| 405 | 416 | $query = $this->dbc->getQueryBuilder(); |
| 406 | 417 | $query->select(['class', 'priority']) |
@@ -1143,7 +1143,7 @@ discard block |
||
| 1143 | 1143 | * Get the certificate manager for the user |
| 1144 | 1144 | * |
| 1145 | 1145 | * @param string $userId (optional) if not specified the current loggedin user is used, use null to get the system certificate manager |
| 1146 | - * @return \OCP\ICertificateManager | null if $uid is null and no user is logged in |
|
| 1146 | + * @return null|CertificateManager | null if $uid is null and no user is logged in |
|
| 1147 | 1147 | */ |
| 1148 | 1148 | public function getCertificateManager($userId = '') { |
| 1149 | 1149 | if ($userId === '') { |
@@ -1464,6 +1464,7 @@ discard block |
||
| 1464 | 1464 | } |
| 1465 | 1465 | |
| 1466 | 1466 | /** |
| 1467 | + * @param string $app |
|
| 1467 | 1468 | * @return \OCP\Files\IAppData |
| 1468 | 1469 | */ |
| 1469 | 1470 | public function getAppDataDir($app) { |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | |
| 227 | 227 | /** |
| 228 | 228 | * By default renders no output |
| 229 | - * @return null |
|
| 229 | + * @return string |
|
| 230 | 230 | * @since 6.0.0 |
| 231 | 231 | */ |
| 232 | 232 | public function render() { |
@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | |
| 260 | 260 | /** |
| 261 | 261 | * Get the currently used Content-Security-Policy |
| 262 | - * @return EmptyContentSecurityPolicy|null Used Content-Security-Policy or null if |
|
| 262 | + * @return ContentSecurityPolicy|null Used Content-Security-Policy or null if |
|
| 263 | 263 | * none specified. |
| 264 | 264 | * @since 8.1.0 |
| 265 | 265 | */ |
@@ -134,7 +134,7 @@ |
||
| 134 | 134 | * @param RequestInterface $request |
| 135 | 135 | * @param ResponseInterface $response |
| 136 | 136 | * |
| 137 | - * @return void|bool |
|
| 137 | + * @return null|false |
|
| 138 | 138 | */ |
| 139 | 139 | public function httpPost(RequestInterface $request, ResponseInterface $response) { |
| 140 | 140 | $path = $request->getPath(); |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * @param \Sabre\DAVACL\PrincipalBackend\BackendInterface $principalBackend |
| 33 | - * @param \Sabre\CardDAV\Backend\BackendInterface $carddavBackend |
|
| 33 | + * @param CardDavBackend $carddavBackend |
|
| 34 | 34 | * @param string $principalPrefix |
| 35 | 35 | */ |
| 36 | 36 | public function __construct(\Sabre\DAVACL\PrincipalBackend\BackendInterface $principalBackend, \Sabre\CardDAV\Backend\BackendInterface $carddavBackend, $principalPrefix = 'principals') { |
@@ -770,7 +770,7 @@ |
||
| 770 | 770 | |
| 771 | 771 | /** |
| 772 | 772 | * @param Share[] $shares |
| 773 | - * @param $userId |
|
| 773 | + * @param string $userId |
|
| 774 | 774 | * @return Share[] The updates shares if no update is found for a share return the original |
| 775 | 775 | */ |
| 776 | 776 | private function resolveGroupShares($shares, $userId) { |
@@ -24,7 +24,6 @@ |
||
| 24 | 24 | namespace OC\Share20; |
| 25 | 25 | |
| 26 | 26 | use OC\Files\Cache\Cache; |
| 27 | -use OC\Files\Cache\CacheEntry; |
|
| 28 | 27 | use OCP\Files\File; |
| 29 | 28 | use OCP\Files\Folder; |
| 30 | 29 | use OCP\Share\IShareProvider; |