@@ -87,8 +87,6 @@ |
||
| 87 | 87 | |
| 88 | 88 | /** |
| 89 | 89 | * @codeCoverageIgnore |
| 90 | - * @param \Exception $ex |
|
| 91 | - * @param int $httpCode |
|
| 92 | 90 | * @return bool|string |
| 93 | 91 | */ |
| 94 | 92 | public function generateBody(\Exception $exception) { |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | /** |
| 120 | 120 | * @param string $data |
| 121 | - * @return int |
|
| 121 | + * @return boolean |
|
| 122 | 122 | */ |
| 123 | 123 | public function stream_write($data) { |
| 124 | 124 | return false; |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | /** |
| 227 | - * @param $pos |
|
| 227 | + * @param integer $pos |
|
| 228 | 228 | * @return IFile | null |
| 229 | 229 | */ |
| 230 | 230 | private function getNodeForPosition($pos) { |
@@ -369,7 +369,7 @@ |
||
| 369 | 369 | * @param string $path path to the file which should be updated |
| 370 | 370 | * @param string $uid of the user who performs the operation |
| 371 | 371 | * @param array $accessList who has access to the file contains the key 'users' and 'public' |
| 372 | - * @return boolean |
|
| 372 | + * @return null|boolean |
|
| 373 | 373 | */ |
| 374 | 374 | public function update($path, $uid, array $accessList) { |
| 375 | 375 | |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | /** |
| 392 | 392 | * store remote ID in federated reShare table |
| 393 | 393 | * |
| 394 | - * @param $shareId |
|
| 394 | + * @param integer $shareId |
|
| 395 | 395 | * @param $remoteId |
| 396 | 396 | */ |
| 397 | 397 | public function storeRemoteId($shareId, $remoteId) { |
@@ -729,7 +729,7 @@ discard block |
||
| 729 | 729 | /** |
| 730 | 730 | * get database row of a give share |
| 731 | 731 | * |
| 732 | - * @param $id |
|
| 732 | + * @param integer $id |
|
| 733 | 733 | * @return array |
| 734 | 734 | * @throws ShareNotFound |
| 735 | 735 | */ |
@@ -566,7 +566,7 @@ |
||
| 566 | 566 | /** |
| 567 | 567 | * update permissions in database |
| 568 | 568 | * |
| 569 | - * @param IShare $share |
|
| 569 | + * @param \OC\Share20\Share $share |
|
| 570 | 570 | * @param int $permissions |
| 571 | 571 | */ |
| 572 | 572 | protected function updatePermissionsInDatabase(IShare $share, $permissions) { |
@@ -335,7 +335,7 @@ |
||
| 335 | 335 | * split user and remote from federated cloud id |
| 336 | 336 | * |
| 337 | 337 | * @param string $address federated share address |
| 338 | - * @return array [user, remoteURL] |
|
| 338 | + * @return string[] [user, remoteURL] |
|
| 339 | 339 | * @throws \Exception |
| 340 | 340 | */ |
| 341 | 341 | public function splitUserRemote($address) { |
@@ -325,6 +325,9 @@ |
||
| 325 | 325 | return $result; |
| 326 | 326 | } |
| 327 | 327 | |
| 328 | + /** |
|
| 329 | + * @param string $mountPoint |
|
| 330 | + */ |
|
| 328 | 331 | public function removeShare($mountPoint) { |
| 329 | 332 | |
| 330 | 333 | $mountPointObj = $this->mountManager->find($mountPoint); |
@@ -130,7 +130,6 @@ |
||
| 130 | 130 | /** |
| 131 | 131 | * Get $n re-shares from the database |
| 132 | 132 | * |
| 133 | - * @param int $n The max number of shares to fetch |
|
| 134 | 133 | * @return \Doctrine\DBAL\Driver\Statement |
| 135 | 134 | */ |
| 136 | 135 | private function getReShares() { |
@@ -279,7 +279,7 @@ |
||
| 279 | 279 | /** |
| 280 | 280 | * get share ID |
| 281 | 281 | * |
| 282 | - * @return integer unique share ID |
|
| 282 | + * @return string unique share ID |
|
| 283 | 283 | */ |
| 284 | 284 | public function getShareId() { |
| 285 | 285 | return $this->newShare->getId(); |