@@ -151,7 +151,6 @@ |
||
151 | 151 | /** |
152 | 152 | * saves database schema to xml file |
153 | 153 | * @param string $file name of file |
154 | - * @param int $mode |
|
155 | 154 | * @return bool |
156 | 155 | * |
157 | 156 | * TODO: write more documentation |
@@ -413,6 +413,10 @@ |
||
413 | 413 | return $url; |
414 | 414 | } |
415 | 415 | |
416 | + /** |
|
417 | + * @param string $feature |
|
418 | + * @param string $value |
|
419 | + */ |
|
416 | 420 | public function triggerChange($feature, $value = null) { |
417 | 421 | if ($this->emitter) { |
418 | 422 | $this->emitter->emit('\OC\User', 'changeUser', array($this, $feature, $value)); |
@@ -116,8 +116,8 @@ |
||
116 | 116 | * Looks up a system wide defined value |
117 | 117 | * |
118 | 118 | * @param string $key the key of the value, under which it was saved |
119 | - * @param mixed $default the default value to be returned if the value isn't set |
|
120 | - * @return mixed the value or $default |
|
119 | + * @param string|false $default the default value to be returned if the value isn't set |
|
120 | + * @return string the value or $default |
|
121 | 121 | */ |
122 | 122 | public function getSystemValue($key, $default = '') { |
123 | 123 | return $this->systemConfig->getValue($key, $default); |
@@ -334,7 +334,7 @@ |
||
334 | 334 | * |
335 | 335 | * @param int $size file size in bytes |
336 | 336 | * @param array $files override '.htaccess' and '.user.ini' locations |
337 | - * @return bool false on failure, size on success |
|
337 | + * @return integer false on failure, size on success |
|
338 | 338 | */ |
339 | 339 | public static function setUploadLimit($size, $files = []) { |
340 | 340 | //don't allow user to break his config |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | /** |
130 | 130 | * returns the registerd classes in the given table |
131 | 131 | * |
132 | - * @param $table |
|
132 | + * @param string $table |
|
133 | 133 | * @return string[] |
134 | 134 | */ |
135 | 135 | private function getClasses($table) { |
@@ -225,6 +225,11 @@ discard block |
||
225 | 225 | ); |
226 | 226 | } |
227 | 227 | |
228 | + /** |
|
229 | + * @param string $table |
|
230 | + * @param string $idCol |
|
231 | + * @param string $id |
|
232 | + */ |
|
228 | 233 | private function update($table, $idCol, $id, $values) { |
229 | 234 | $query = $this->dbc->getQueryBuilder(); |
230 | 235 | $query->update($table); |
@@ -275,7 +280,7 @@ discard block |
||
275 | 280 | /** |
276 | 281 | * deletes an settings or admin entry from the given table |
277 | 282 | * |
278 | - * @param $table |
|
283 | + * @param string $table |
|
279 | 284 | * @param $className |
280 | 285 | */ |
281 | 286 | private function remove($table, $className) { |
@@ -358,6 +363,9 @@ discard block |
||
358 | 363 | return $sections; |
359 | 364 | } |
360 | 365 | |
366 | + /** |
|
367 | + * @param string $section |
|
368 | + */ |
|
361 | 369 | private function getBuiltInAdminSettings($section) { |
362 | 370 | $forms = []; |
363 | 371 | try { |
@@ -397,6 +405,9 @@ discard block |
||
397 | 405 | return $forms; |
398 | 406 | } |
399 | 407 | |
408 | + /** |
|
409 | + * @param string $section |
|
410 | + */ |
|
400 | 411 | private function getAdminSettingsFromDB($section, &$settings) { |
401 | 412 | $query = $this->dbc->getQueryBuilder(); |
402 | 413 | $query->select(['class', 'priority']) |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | * |
73 | 73 | * @NoAdminRequired |
74 | 74 | * @NoSubadminRequired |
75 | - * @return array |
|
75 | + * @return DataResponse |
|
76 | 76 | */ |
77 | 77 | public function addPersonalRootCertificate() { |
78 | 78 | return $this->addCertificate($this->userCertificateManager); |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | /** |
161 | 161 | * Add a new personal root certificate to the system's trust store |
162 | 162 | * |
163 | - * @return array |
|
163 | + * @return DataResponse |
|
164 | 164 | */ |
165 | 165 | public function addSystemRootCertificate() { |
166 | 166 | return $this->addCertificate($this->systemCertificateManager); |
@@ -95,7 +95,7 @@ |
||
95 | 95 | * @param string $key |
96 | 96 | * @param mixed $value |
97 | 97 | * @param int $ttl |
98 | - * @return bool|mixed |
|
98 | + * @return boolean |
|
99 | 99 | * @throws \OC\ForbiddenException |
100 | 100 | */ |
101 | 101 | public function set($key, $value, $ttl = 0) { |
@@ -335,7 +335,7 @@ |
||
335 | 335 | * split user and remote from federated cloud id |
336 | 336 | * |
337 | 337 | * @param string $address federated share address |
338 | - * @return array [user, remoteURL] |
|
338 | + * @return string[] [user, remoteURL] |
|
339 | 339 | * @throws \Exception |
340 | 340 | */ |
341 | 341 | public function splitUserRemote($address) { |
@@ -132,7 +132,7 @@ |
||
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
135 | - * @param $message |
|
135 | + * @param string $message |
|
136 | 136 | * @param array $additional |
137 | 137 | * @return array |
138 | 138 | */ |