Completed
Pull Request — master (#796)
by Lukas
10:35
created
lib/private/Settings/Manager.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -175,6 +175,11 @@  discard block
 block discarded – undo
175 175
 		);
176 176
 	}
177 177
 
178
+	/**
179
+	 * @param string $table
180
+	 * @param string $idCol
181
+	 * @param string $id
182
+	 */
178 183
 	private function update($table, $idCol, $id, $values) {
179 184
 		$query = $this->dbc->getQueryBuilder();
180 185
 		$query->update($table);
@@ -294,6 +299,9 @@  discard block
 block discarded – undo
294 299
 		return $sections;
295 300
 	}
296 301
 
302
+	/**
303
+	 * @param string $section
304
+	 */
297 305
 	private function getBuiltInAdminSettings($section) {
298 306
 		$forms = [];
299 307
 		try {
@@ -333,6 +341,9 @@  discard block
 block discarded – undo
333 341
 		return $forms;
334 342
 	}
335 343
 
344
+	/**
345
+	 * @param string $section
346
+	 */
336 347
 	private function getAdminSettingsFromDB($section, &$settings) {
337 348
 		$query = $this->dbc->getQueryBuilder();
338 349
 		$query->select(['class', 'priority'])
Please login to merge, or discard this patch.