@@ -103,6 +103,9 @@ |
||
103 | 103 | return \OC_App::getAppVersions(); |
104 | 104 | } |
105 | 105 | |
106 | + /** |
|
107 | + * @param string $appId |
|
108 | + */ |
|
106 | 109 | protected function getAppInfo($appId) { |
107 | 110 | return \OC_App::getAppInfo($appId); |
108 | 111 | } |
@@ -46,7 +46,7 @@ |
||
46 | 46 | * DispatcherEvent constructor. |
47 | 47 | * |
48 | 48 | * @param string $event |
49 | - * @param $appID |
|
49 | + * @param string $appID |
|
50 | 50 | * @param \OCP\IGroup[] $groups |
51 | 51 | * @since 9.0.0 |
52 | 52 | */ |
@@ -96,7 +96,7 @@ |
||
96 | 96 | /** |
97 | 97 | * Appends a variable |
98 | 98 | * @param string $key key |
99 | - * @param mixed $value value |
|
99 | + * @param string $value value |
|
100 | 100 | * @return boolean|null |
101 | 101 | * |
102 | 102 | * This function assigns a variable in an array context. If the key already |
@@ -128,7 +128,6 @@ |
||
128 | 128 | /** |
129 | 129 | * Get $n re-shares from the database |
130 | 130 | * |
131 | - * @param int $n The max number of shares to fetch |
|
132 | 131 | * @return \Doctrine\DBAL\Driver\Statement |
133 | 132 | */ |
134 | 133 | private function getReShares() { |
@@ -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 | */ |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | * and does not take the chroot into account ) |
198 | 198 | * |
199 | 199 | * @param string $path |
200 | - * @return \OCP\Files\Mount\IMountPoint |
|
200 | + * @return Mount\MountPoint|null |
|
201 | 201 | */ |
202 | 202 | public function getMount($path) { |
203 | 203 | return Filesystem::getMountManager()->find($this->getAbsolutePath($path)); |
@@ -960,7 +960,7 @@ discard block |
||
960 | 960 | |
961 | 961 | /** |
962 | 962 | * @param string $path |
963 | - * @return bool|string |
|
963 | + * @return string|false |
|
964 | 964 | * @throws \OCP\Files\InvalidPathException |
965 | 965 | */ |
966 | 966 | public function toTmpFile($path) { |
@@ -1075,7 +1075,7 @@ discard block |
||
1075 | 1075 | * @param string $path |
1076 | 1076 | * @param array $hooks (optional) |
1077 | 1077 | * @param mixed $extraParam (optional) |
1078 | - * @return mixed |
|
1078 | + * @return string |
|
1079 | 1079 | * @throws \Exception |
1080 | 1080 | * |
1081 | 1081 | * This method takes requests for basic filesystem functions (e.g. reading & writing |
@@ -2083,7 +2083,7 @@ discard block |
||
2083 | 2083 | |
2084 | 2084 | /** |
2085 | 2085 | * @param string $filename |
2086 | - * @return array |
|
2086 | + * @return string[] |
|
2087 | 2087 | * @throws \OC\User\NoUserException |
2088 | 2088 | * @throws NotFoundException |
2089 | 2089 | */ |
@@ -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 | */ |
@@ -278,6 +278,7 @@ |
||
278 | 278 | * get default share folder |
279 | 279 | * |
280 | 280 | * @param \OC\Files\View |
281 | + * @param View $view |
|
281 | 282 | * @return string |
282 | 283 | */ |
283 | 284 | public static function getShareFolder($view = null) { |
@@ -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) { |