@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * |
52 | 52 | * @param IUser $user |
53 | 53 | * @param IStorageFactory $loader |
54 | - * @return \OCP\Files\Mount\IMountPoint |
|
54 | + * @return null|MountPoint |
|
55 | 55 | */ |
56 | 56 | public function getHomeMountForUser(IUser $user, IStorageFactory $loader) { |
57 | 57 | |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | /** |
71 | 71 | * @param IUser $user |
72 | - * @return array|null |
|
72 | + * @return IStorageFactory|null |
|
73 | 73 | */ |
74 | 74 | private function getSingleBucketObjectStoreConfig(IUser $user) { |
75 | 75 | $config = $this->config->getSystemValue('objectstore'); |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | /** |
95 | 95 | * @param IUser $user |
96 | - * @return array|null |
|
96 | + * @return IStorageFactory|null |
|
97 | 97 | */ |
98 | 98 | private function getMultiBucketObjectStoreConfig(IUser $user) { |
99 | 99 | $config = $this->config->getSystemValue('objectstore_multibucket'); |
@@ -69,7 +69,7 @@ |
||
69 | 69 | /** |
70 | 70 | * Generate a keypair |
71 | 71 | * |
72 | - * @param int $keyLenth |
|
72 | + * @param integer $keyLength |
|
73 | 73 | * @return array ['privatekey' => $privateKey, 'publickey' => $publicKey] |
74 | 74 | */ |
75 | 75 | public function createKey($keyLength) { |
@@ -176,7 +176,7 @@ |
||
176 | 176 | /** |
177 | 177 | * Create the circle share provider |
178 | 178 | * |
179 | - * @return FederatedShareProvider |
|
179 | + * @return null|\OCA\Circles\ShareByCircleProvider |
|
180 | 180 | */ |
181 | 181 | protected function getShareByCircleProvider() { |
182 | 182 |