@@ -77,7 +77,7 @@ |
||
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
80 | - * @return int |
|
80 | + * @return string |
|
81 | 81 | */ |
82 | 82 | static private function getRefreshInterval() { |
83 | 83 | //defaults to every hour |
@@ -146,6 +146,7 @@ discard block |
||
146 | 146 | /** |
147 | 147 | * @param string $userId |
148 | 148 | * @param string $userId |
149 | + * @param string $token |
|
149 | 150 | * @throws \Exception |
150 | 151 | */ |
151 | 152 | private function checkPasswordResetToken($token, $userId) { |
@@ -167,7 +168,7 @@ discard block |
||
167 | 168 | } |
168 | 169 | |
169 | 170 | /** |
170 | - * @param $message |
|
171 | + * @param string $message |
|
171 | 172 | * @param array $additional |
172 | 173 | * @return array |
173 | 174 | */ |
@@ -96,6 +96,10 @@ |
||
96 | 96 | // TODO: dont check/enforce 2FA if a auth token is used |
97 | 97 | } |
98 | 98 | |
99 | + /** |
|
100 | + * @param Controller $controller |
|
101 | + * @param string $methodName |
|
102 | + */ |
|
99 | 103 | private function checkTwoFactor($controller, $methodName) { |
100 | 104 | // If two-factor auth is in progress disallow access to any controllers |
101 | 105 | // defined within "LoginController". |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | /** |
118 | 118 | * List all installed apps |
119 | 119 | * |
120 | - * @return string[] |
|
120 | + * @return integer[] |
|
121 | 121 | */ |
122 | 122 | public function getInstalledApps() { |
123 | 123 | return array_keys($this->getInstalledAppsValues()); |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | /** |
275 | 275 | * Returns a list of apps that need upgrade |
276 | 276 | * |
277 | - * @param array $version ownCloud version as array of version components |
|
277 | + * @param array $ocVersion ownCloud version as array of version components |
|
278 | 278 | * @return array list of app info from apps that need an upgrade |
279 | 279 | * |
280 | 280 | * @internal |
@@ -344,6 +344,9 @@ discard block |
||
344 | 344 | return in_array($appId, $this->shippedApps); |
345 | 345 | } |
346 | 346 | |
347 | + /** |
|
348 | + * @param string $appId |
|
349 | + */ |
|
347 | 350 | private function isAlwaysEnabled($appId) { |
348 | 351 | $alwaysEnabled = $this->getAlwaysEnabledApps(); |
349 | 352 | return in_array($appId, $alwaysEnabled); |
@@ -296,6 +296,9 @@ |
||
296 | 296 | } |
297 | 297 | } |
298 | 298 | |
299 | + /** |
|
300 | + * @param string $name |
|
301 | + */ |
|
299 | 302 | private function buildReason($name, $errorCode) { |
300 | 303 | if (isset($this->errorMessages[$errorCode])) { |
301 | 304 | $desc = $this->list->getDescription($errorCode, $name); |
@@ -110,7 +110,7 @@ |
||
110 | 110 | |
111 | 111 | /** |
112 | 112 | * Gets the correct header |
113 | - * @param Http::CONSTANT $status the constant from the Http class |
|
113 | + * @param integer $status the constant from the Http class |
|
114 | 114 | * @param \DateTime $lastModified formatted last modified date |
115 | 115 | * @param string $ETag the etag |
116 | 116 | * @return string |
@@ -46,7 +46,7 @@ |
||
46 | 46 | |
47 | 47 | |
48 | 48 | /** |
49 | - * @param object $object an object or classname |
|
49 | + * @param \OCP\AppFramework\Controller $object an object or classname |
|
50 | 50 | * @param string $method the method which we want to inspect |
51 | 51 | */ |
52 | 52 | public function reflect($object, $method){ |
@@ -92,9 +92,9 @@ |
||
92 | 92 | |
93 | 93 | /** |
94 | 94 | * @param string $key |
95 | - * @param mixed $value |
|
95 | + * @param string|null $value |
|
96 | 96 | * @param int $ttl |
97 | - * @return bool|mixed |
|
97 | + * @return boolean |
|
98 | 98 | * @throws \OC\ForbiddenException |
99 | 99 | */ |
100 | 100 | public function set($key, $value, $ttl = 0) { |
@@ -205,7 +205,7 @@ |
||
205 | 205 | /** |
206 | 206 | * removes an entry from the comments run time cache |
207 | 207 | * |
208 | - * @param mixed $id the comment's id |
|
208 | + * @param string $id the comment's id |
|
209 | 209 | */ |
210 | 210 | protected function uncache($id) { |
211 | 211 | $id = strval($id); |