@@ -30,7 +30,6 @@ |
||
| 30 | 30 | * StorageTimeoutException constructor. |
| 31 | 31 | * |
| 32 | 32 | * @param string $message |
| 33 | - * @param int $code |
|
| 34 | 33 | * @param \Exception $previous |
| 35 | 34 | * @since 9.0.0 |
| 36 | 35 | */ |
@@ -322,7 +322,7 @@ discard block |
||
| 322 | 322 | /** |
| 323 | 323 | * store remote ID in federated reShare table |
| 324 | 324 | * |
| 325 | - * @param $shareId |
|
| 325 | + * @param integer $shareId |
|
| 326 | 326 | * @param $remoteId |
| 327 | 327 | */ |
| 328 | 328 | public function storeRemoteId($shareId, $remoteId) { |
@@ -653,7 +653,7 @@ discard block |
||
| 653 | 653 | /** |
| 654 | 654 | * get database row of a give share |
| 655 | 655 | * |
| 656 | - * @param $id |
|
| 656 | + * @param integer $id |
|
| 657 | 657 | * @return array |
| 658 | 658 | * @throws ShareNotFound |
| 659 | 659 | */ |
@@ -102,17 +102,19 @@ discard block |
||
| 102 | 102 | * with the same attributes |
| 103 | 103 | * |
| 104 | 104 | * @since 9.0.0 |
| 105 | + * @return void |
|
| 105 | 106 | */ |
| 106 | 107 | public function updateTag($tagId, $newName, $userVisible, $userAssignable); |
| 107 | 108 | |
| 108 | 109 | /** |
| 109 | 110 | * Delete the given tags from the database and all their relationships. |
| 110 | 111 | * |
| 111 | - * @param string|array $tagIds array of tag ids |
|
| 112 | + * @param string $tagIds array of tag ids |
|
| 112 | 113 | * |
| 113 | 114 | * @throws \OCP\SystemTag\TagNotFoundException if at least one tag did not exist |
| 114 | 115 | * |
| 115 | 116 | * @since 9.0.0 |
| 117 | + * @return void |
|
| 116 | 118 | */ |
| 117 | 119 | public function deleteTags($tagIds); |
| 118 | 120 | |
@@ -123,7 +125,7 @@ discard block |
||
| 123 | 125 | * @param ISystemTag $tag tag to check permission for |
| 124 | 126 | * @param IUser $user user to check permission for |
| 125 | 127 | * |
| 126 | - * @return true if the user is allowed to assign/unassign the tag, false otherwise |
|
| 128 | + * @return boolean if the user is allowed to assign/unassign the tag, false otherwise |
|
| 127 | 129 | * |
| 128 | 130 | * @since 9.1.0 |
| 129 | 131 | */ |
@@ -133,9 +135,9 @@ discard block |
||
| 133 | 135 | * Checks whether the given user is allowed to see the tag with the given id. |
| 134 | 136 | * |
| 135 | 137 | * @param ISystemTag $tag tag to check permission for |
| 136 | - * @param IUser $user user to check permission for |
|
| 138 | + * @param IUser $userId user to check permission for |
|
| 137 | 139 | * |
| 138 | - * @return true if the user can see the tag, false otherwise |
|
| 140 | + * @return boolean if the user can see the tag, false otherwise |
|
| 139 | 141 | * |
| 140 | 142 | * @since 9.1.0 |
| 141 | 143 | */ |
@@ -148,6 +150,7 @@ discard block |
||
| 148 | 150 | * @param string[] $groupIds group ids of groups that can assign/unassign the tag |
| 149 | 151 | * |
| 150 | 152 | * @since 9.1.0 |
| 153 | + * @return void |
|
| 151 | 154 | */ |
| 152 | 155 | public function setTagGroups(ISystemTag $tag, $groupIds); |
| 153 | 156 | |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | /** |
| 53 | 53 | * @param string $appName |
| 54 | 54 | * @param IRequest $request |
| 55 | - * @param Manager $userManager |
|
| 55 | + * @param UserManager $userManager |
|
| 56 | 56 | * @param DefaultTokenProvider $tokenProvider |
| 57 | 57 | * @param ISecureRandom $secureRandom |
| 58 | 58 | */ |
@@ -56,7 +56,7 @@ |
||
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
| 59 | - * @param StorageConfig $storage |
|
| 59 | + * @param IStorageConfig $storage |
|
| 60 | 60 | * @param IUser $user |
| 61 | 61 | */ |
| 62 | 62 | public function manipulateStorageConfig(IStorageConfig &$storage, IUser $user = null) { |
@@ -27,7 +27,6 @@ |
||
| 27 | 27 | use OCP\Files\External\Backend\Backend; |
| 28 | 28 | use OCP\Files\External\IStorageConfig; |
| 29 | 29 | use OCA\Files_External\Lib\LegacyDependencyCheckPolyfill; |
| 30 | - |
|
| 31 | 30 | use OCP\IUser; |
| 32 | 31 | |
| 33 | 32 | class SMB extends Backend { |
@@ -30,7 +30,6 @@ |
||
| 30 | 30 | private $publicURLs; |
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | - * @param string[] $publicURLs |
|
| 34 | 33 | */ |
| 35 | 34 | public function __construct() { |
| 36 | 35 | $this->publicURLs = [ |
@@ -22,11 +22,9 @@ |
||
| 22 | 22 | namespace OCA\Files_External\Lib\Backend; |
| 23 | 23 | |
| 24 | 24 | use OCP\IL10N; |
| 25 | -use OCP\Files\External\Auth\AuthMechanism; |
|
| 26 | 25 | use OCP\Files\External\Backend\Backend; |
| 27 | 26 | use OCP\Files\External\DefinitionParameter; |
| 28 | 27 | use OCA\Files_External\Lib\LegacyDependencyCheckPolyfill; |
| 29 | - |
|
| 30 | 28 | use OCA\Files_External\Lib\Auth\AmazonS3\AccessKey; |
| 31 | 29 | |
| 32 | 30 | class AmazonS3 extends Backend { |
@@ -207,7 +207,7 @@ |
||
| 207 | 207 | * @param array $groupSharesById |
| 208 | 208 | * @param array $subShares |
| 209 | 209 | * |
| 210 | - * @return true if the share is valid, false if it needs repair |
|
| 210 | + * @return boolean if the share is valid, false if it needs repair |
|
| 211 | 211 | */ |
| 212 | 212 | private function isThisShareValid($groupSharesById, $subShares) { |
| 213 | 213 | $foundTargets = []; |
@@ -111,6 +111,9 @@ |
||
| 111 | 111 | return true; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | + /** |
|
| 115 | + * @param string[] $info |
|
| 116 | + */ |
|
| 114 | 117 | public function getFileChunking($info) { |
| 115 | 118 | // FIXME: need a factory for better mocking support |
| 116 | 119 | return new \OC_FileChunking($info); |