@@ -576,7 +576,7 @@ discard block |
||
| 576 | 576 | * Share a path |
| 577 | 577 | * |
| 578 | 578 | * @param \OCP\Share\IShare $share |
| 579 | - * @return Share The share object |
|
| 579 | + * @return IShare The share object |
|
| 580 | 580 | * @throws \Exception |
| 581 | 581 | * |
| 582 | 582 | * TODO: handle link share permissions or check them |
@@ -1169,7 +1169,7 @@ discard block |
||
| 1169 | 1169 | * Get the share by token possible with password |
| 1170 | 1170 | * |
| 1171 | 1171 | * @param string $token |
| 1172 | - * @return Share |
|
| 1172 | + * @return IShare |
|
| 1173 | 1173 | * |
| 1174 | 1174 | * @throws ShareNotFound |
| 1175 | 1175 | */ |
@@ -1231,6 +1231,9 @@ discard block |
||
| 1231 | 1231 | return $share; |
| 1232 | 1232 | } |
| 1233 | 1233 | |
| 1234 | + /** |
|
| 1235 | + * @param IShare $share |
|
| 1236 | + */ |
|
| 1234 | 1237 | protected function checkExpireDate($share) { |
| 1235 | 1238 | if ($share->getExpirationDate() !== null && |
| 1236 | 1239 | $share->getExpirationDate() <= new \DateTime()) { |
@@ -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 |
@@ -74,7 +74,6 @@ |
||
| 74 | 74 | * |
| 75 | 75 | * Get user accessibility config |
| 76 | 76 | * |
| 77 | - * @param string $key theme or font |
|
| 78 | 77 | * @return DataResponse |
| 79 | 78 | */ |
| 80 | 79 | public function getConfig(): DataResponse { |
@@ -407,7 +407,7 @@ |
||
| 407 | 407 | /** |
| 408 | 408 | * calculate default permissions in case no permissions are provided |
| 409 | 409 | * |
| 410 | - * @param $path |
|
| 410 | + * @param string $path |
|
| 411 | 411 | * @return int |
| 412 | 412 | */ |
| 413 | 413 | protected function getDefaultPermissions($path) { |
@@ -450,7 +450,7 @@ |
||
| 450 | 450 | /** |
| 451 | 451 | * translate Nextcloud permissions to OCM Permissions |
| 452 | 452 | * |
| 453 | - * @param $ncPermissions |
|
| 453 | + * @param integer $ncPermissions |
|
| 454 | 454 | * @return array |
| 455 | 455 | */ |
| 456 | 456 | protected function ncPermissions2ocmPermissions($ncPermissions) { |
@@ -182,7 +182,7 @@ |
||
| 182 | 182 | |
| 183 | 183 | /** |
| 184 | 184 | * @param string $dir |
| 185 | - * @param $recursive |
|
| 185 | + * @param boolean $recursive |
|
| 186 | 186 | * @param callable|null $mountFilter |
| 187 | 187 | * @throws ForbiddenException |
| 188 | 188 | * @throws NotFoundException |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | * share received from another server |
| 151 | 151 | * |
| 152 | 152 | * @param ICloudFederationShare $share |
| 153 | - * @return string provider specific unique ID of the share |
|
| 153 | + * @return integer provider specific unique ID of the share |
|
| 154 | 154 | * |
| 155 | 155 | * @throws ProviderCouldNotAddShareException |
| 156 | 156 | * @throws \OCP\AppFramework\QueryException |
@@ -325,11 +325,11 @@ discard block |
||
| 325 | 325 | /** |
| 326 | 326 | * notify user about new federated share |
| 327 | 327 | * |
| 328 | - * @param $shareWith |
|
| 329 | - * @param $shareId |
|
| 330 | - * @param $ownerFederatedId |
|
| 331 | - * @param $sharedByFederatedId |
|
| 332 | - * @param $name |
|
| 328 | + * @param string $shareWith |
|
| 329 | + * @param integer $shareId |
|
| 330 | + * @param string $ownerFederatedId |
|
| 331 | + * @param string $sharedByFederatedId |
|
| 332 | + * @param string $name |
|
| 333 | 333 | */ |
| 334 | 334 | private function notifyAboutNewShare($shareWith, $shareId, $ownerFederatedId, $sharedByFederatedId, $name) { |
| 335 | 335 | $notification = $this->notificationManager->createNotification(); |
@@ -821,7 +821,7 @@ discard block |
||
| 821 | 821 | /** |
| 822 | 822 | * get the supported share types, e.g. "user", "group", etc. |
| 823 | 823 | * |
| 824 | - * @return array |
|
| 824 | + * @return string[] |
|
| 825 | 825 | * |
| 826 | 826 | * @since 14.0.0 |
| 827 | 827 | */ |
@@ -210,12 +210,12 @@ discard block |
||
| 210 | 210 | * @param $password |
| 211 | 211 | * @param $name |
| 212 | 212 | * @param $owner |
| 213 | - * @param $user |
|
| 213 | + * @param string $user |
|
| 214 | 214 | * @param $mountPoint |
| 215 | 215 | * @param $hash |
| 216 | - * @param $accepted |
|
| 216 | + * @param integer $accepted |
|
| 217 | 217 | * @param $remoteId |
| 218 | - * @param $parent |
|
| 218 | + * @param integer $parent |
|
| 219 | 219 | * @param $shareType |
| 220 | 220 | * @return bool |
| 221 | 221 | */ |
@@ -409,7 +409,7 @@ discard block |
||
| 409 | 409 | * |
| 410 | 410 | * @param string $remoteDomain |
| 411 | 411 | * @param string $token |
| 412 | - * @param $remoteId id of the share |
|
| 412 | + * @param integer $remoteId id of the share |
|
| 413 | 413 | * @param string $feedback |
| 414 | 414 | * @return bool |
| 415 | 415 | */ |
@@ -506,6 +506,9 @@ discard block |
||
| 506 | 506 | return $result; |
| 507 | 507 | } |
| 508 | 508 | |
| 509 | + /** |
|
| 510 | + * @param string $mountPoint |
|
| 511 | + */ |
|
| 509 | 512 | public function removeShare($mountPoint) { |
| 510 | 513 | |
| 511 | 514 | $mountPointObj = $this->mountManager->find($mountPoint); |
@@ -295,8 +295,8 @@ |
||
| 295 | 295 | * |
| 296 | 296 | * @NoAdminRequired |
| 297 | 297 | * |
| 298 | - * @param bool $show |
|
| 299 | - * @param bool $key the key of the folder |
|
| 298 | + * @param integer $show |
|
| 299 | + * @param string|boolean $key the key of the folder |
|
| 300 | 300 | * |
| 301 | 301 | * @return Response |
| 302 | 302 | */ |