Completed
Pull Request — master (#26449)
by Tom
07:18
created
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.
lib/private/legacy/files.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -333,7 +333,7 @@
 block discarded – undo
333 333
 	 *
334 334
 	 * @param int $size file size in bytes
335 335
 	 * @param array $files override '.htaccess' and '.user.ini' locations
336
-	 * @return bool false on failure, size on success
336
+	 * @return integer false on failure, size on success
337 337
 	 */
338 338
 	public static function setUploadLimit($size, $files = []) {
339 339
 		//don't allow user to break his config
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.