@@ -60,7 +60,7 @@ |
||
| 60 | 60 | * The deserialize method is called during xml parsing. |
| 61 | 61 | * |
| 62 | 62 | * @param Reader $reader |
| 63 | - * @return mixed |
|
| 63 | + * @return ShareTypeList |
|
| 64 | 64 | */ |
| 65 | 65 | static function xmlDeserialize(Reader $reader) { |
| 66 | 66 | $shareTypes = []; |
@@ -79,7 +79,7 @@ |
||
| 79 | 79 | * the next element. |
| 80 | 80 | * |
| 81 | 81 | * @param Reader $reader |
| 82 | - * @return mixed |
|
| 82 | + * @return TagList |
|
| 83 | 83 | */ |
| 84 | 84 | static function xmlDeserialize(Reader $reader) { |
| 85 | 85 | $tags = []; |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | private $tree; |
| 86 | 86 | |
| 87 | 87 | /** |
| 88 | - * @param \Sabre\DAV\Tree $tree tree |
|
| 88 | + * @param ObjectTree $tree tree |
|
| 89 | 89 | * @param \OCP\ITagManager $tagManager tag manager |
| 90 | 90 | */ |
| 91 | 91 | public function __construct(\Sabre\DAV\Tree $tree, \OCP\ITagManager $tagManager) { |
@@ -132,7 +132,7 @@ |
||
| 132 | 132 | * Returns the list of members for a group-principal |
| 133 | 133 | * |
| 134 | 134 | * @param string $principal |
| 135 | - * @return array |
|
| 135 | + * @return string[] |
|
| 136 | 136 | */ |
| 137 | 137 | function getGroupMemberSet($principal) { |
| 138 | 138 | // TODO: for now the group principal has only one member, the user itself |
@@ -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 | |
@@ -488,7 +488,7 @@ |
||
| 488 | 488 | |
| 489 | 489 | |
| 490 | 490 | /** |
| 491 | - * @param $path |
|
| 491 | + * @param string $path |
|
| 492 | 492 | * @param $uid |
| 493 | 493 | * @return mixed |
| 494 | 494 | */ |
@@ -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 | */ |
@@ -230,6 +230,9 @@ |
||
| 230 | 230 | return false; |
| 231 | 231 | } |
| 232 | 232 | |
| 233 | + /** |
|
| 234 | + * @param string $path |
|
| 235 | + */ |
|
| 233 | 236 | private function batchDelete ($path = null) { |
| 234 | 237 | $params = array( |
| 235 | 238 | 'Bucket' => $this->bucket |