Completed
Pull Request — master (#26449)
by Thomas
12:40
created
lib/private/Settings/SettingsManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 use OCP\IUser;
28 28
 use OCP\ILogger;
29 29
 use OCP\Files\Folder;
30
-
31 30
 use OC\Share20\Exception\ShareNotFound;
32 31
 
33 32
 /**
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/FilesReportPlugin.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 	 * This will be used in the {DAV:}supported-report-set property.
149 149
 	 *
150 150
 	 * @param string $uri
151
-	 * @return array
151
+	 * @return string[]
152 152
 	 */
153 153
 	public function getSupportedReportSet($uri) {
154 154
 		return [self::REPORT_NAME];
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 	 * @param string $reportName
161 161
 	 * @param $report
162 162
 	 * @param string $uri
163
-	 * @return bool
163
+	 * @return null|false
164 164
 	 * @throws BadRequest
165 165
 	 * @throws PreconditionFailed
166 166
 	 * @internal param $ [] $report
@@ -333,6 +333,7 @@  discard block
 block discarded – undo
333 333
 	 * with a leading slash but no trailing slash
334 334
 	 * @param string[] $requestedProps requested properties
335 335
 	 * @param Node[] nodes nodes for which to fetch and prepare responses
336
+	 * @param Node[] $nodes
336 337
 	 * @return Response[]
337 338
 	 */
338 339
 	public function prepareResponses($filesUri, $requestedProps, $nodes) {
Please login to merge, or discard this patch.
settings/Controller/SettingsPageController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
 	 * Creates the personal settings page
59 59
 	 * @NoAdminRequired
60 60
 	 * @NoCSRFRequired
61
-	 * @param string $sectionID
62
-	 * @return \OCP\TemplateResponse
61
+	 * @param string $sectionid
62
+	 * @return TemplateResponse
63 63
 	 */
64 64
 	public function getPersonal($sectionid) {
65 65
 		$this->currentSectionID = $sectionid;
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	/**
70 70
 	 * Creates the admin settings page
71 71
 	 * @NoCSRFRequired
72
-	 * @param string $sectionID
72
+	 * @param string $sectionid
73 73
 	 * @return TemplateResponse
74 74
 	 */
75 75
 	public function getAdmin($sectionid) {
Please login to merge, or discard this patch.