Completed
Push — stable10 ( 737591...a2942c )
by Lukas
09:58 queued 09:42
created
lib/private/Settings/Manager.php 1 patch
Doc Comments   +13 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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'])
Please login to merge, or discard this patch.