@@ -103,7 +103,7 @@ |
||
103 | 103 | /** |
104 | 104 | * Appends a variable |
105 | 105 | * @param string $key key |
106 | - * @param mixed $value value |
|
106 | + * @param string $value value |
|
107 | 107 | * @return boolean|null |
108 | 108 | * |
109 | 109 | * This function assigns a variable in an array context. If the key already |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | * make preview_icon available as a simple function |
183 | 183 | * Returns the path to the preview of the image. |
184 | 184 | * @param string $path path of file |
185 | - * @return link to the preview |
|
185 | + * @return string to the preview |
|
186 | 186 | */ |
187 | 187 | function preview_icon( $path ) { |
188 | 188 | return \OC::$server->getURLGenerator()->linkToRoute('core_ajax_preview', ['x' => 32, 'y' => 32, 'file' => $path]); |
@@ -190,6 +190,7 @@ discard block |
||
190 | 190 | |
191 | 191 | /** |
192 | 192 | * @param string $path |
193 | + * @param string $token |
|
193 | 194 | */ |
194 | 195 | function publicPreview_icon ( $path, $token ) { |
195 | 196 | return \OC::$server->getURLGenerator()->linkToRoute('core_ajax_public_preview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]); |
@@ -245,6 +245,7 @@ |
||
245 | 245 | |
246 | 246 | /** |
247 | 247 | * Sets user id for session and triggers emit |
248 | + * @param string $uid |
|
248 | 249 | */ |
249 | 250 | public static function setUserId($uid) { |
250 | 251 | $userSession = \OC::$server->getUserSession(); |
@@ -143,7 +143,7 @@ |
||
143 | 143 | /** |
144 | 144 | * get the current active user |
145 | 145 | * |
146 | - * @return \OCP\IUser|null Current user, otherwise null |
|
146 | + * @return null|User Current user, otherwise null |
|
147 | 147 | */ |
148 | 148 | public function getUser() { |
149 | 149 | // FIXME: This is a quick'n dirty work-around for the incognito mode as |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | /** |
328 | 328 | * get the users email address |
329 | 329 | * |
330 | - * @return string|null |
|
330 | + * @return string |
|
331 | 331 | * @since 9.0.0 |
332 | 332 | */ |
333 | 333 | public function getEMailAddress() { |
@@ -412,6 +412,10 @@ discard block |
||
412 | 412 | return $url; |
413 | 413 | } |
414 | 414 | |
415 | + /** |
|
416 | + * @param string $feature |
|
417 | + * @param string $value |
|
418 | + */ |
|
415 | 419 | public function triggerChange($feature, $value = null) { |
416 | 420 | if ($this->emitter) { |
417 | 421 | $this->emitter->emit('\OC\User', 'changeUser', array($this, $feature, $value)); |
@@ -1339,7 +1339,7 @@ |
||
1339 | 1339 | * Normalize a unicode string |
1340 | 1340 | * |
1341 | 1341 | * @param string $value a not normalized string |
1342 | - * @return bool|string |
|
1342 | + * @return string |
|
1343 | 1343 | */ |
1344 | 1344 | public static function normalizeUnicode($value) { |
1345 | 1345 | if(Normalizer::isNormalized($value)) { |
@@ -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 | */ |
@@ -335,7 +335,7 @@ |
||
335 | 335 | * Returns an db result and throws exceptions when there are more or less |
336 | 336 | * results |
337 | 337 | * @param string $sql the sql query |
338 | - * @param array $params the parameters of the sql query |
|
338 | + * @param string[] $params the parameters of the sql query |
|
339 | 339 | * @param int $limit the maximum number of rows |
340 | 340 | * @param int $offset from which row we want to start |
341 | 341 | * @throws DoesNotExistException if the item does not exist |
@@ -46,6 +46,7 @@ discard block |
||
46 | 46 | class Files { |
47 | 47 | /** |
48 | 48 | * Recusive deletion of folders |
49 | + * @param string $dir |
|
49 | 50 | * @return bool |
50 | 51 | * @since 5.0.0 |
51 | 52 | */ |
@@ -67,7 +68,7 @@ discard block |
||
67 | 68 | /** |
68 | 69 | * Search for files by mimetype |
69 | 70 | * @param string $mimetype |
70 | - * @return array |
|
71 | + * @return \OC\Files\FileInfo[] |
|
71 | 72 | * @since 6.0.0 |
72 | 73 | */ |
73 | 74 | static public function searchByMime( $mimetype ) { |