Completed
Pull Request — master (#657)
by Björn
14:45 queued 05:44
created
apps/dav/lib/Connector/Sabre/ShareTypeList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 	 * The deserialize method is called during xml parsing.
62 62
 	 *
63 63
 	 * @param Reader $reader
64
-	 * @return mixed
64
+	 * @return null|ShareTypeList
65 65
 	 */
66 66
 	static function xmlDeserialize(Reader $reader) {
67 67
 		$shareTypes = [];
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/TagList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
 	 * the next element.
81 81
 	 *
82 82
 	 * @param Reader $reader
83
-	 * @return mixed
83
+	 * @return null|TagList
84 84
 	 */
85 85
 	static function xmlDeserialize(Reader $reader) {
86 86
 		$tags = [];
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/FilesReportPlugin.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 	 * @param ITagManager $fileTagger manager for private tags
106 106
 	 * @param IUserSession $userSession
107 107
 	 * @param IGroupManager $groupManager
108
-	 * @param Folder $userfolder
108
+	 * @param Folder $userFolder
109 109
 	 */
110 110
 	public function __construct(Tree $tree,
111 111
 								View $view,
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 	 * This will be used in the {DAV:}supported-report-set property.
152 152
 	 *
153 153
 	 * @param string $uri
154
-	 * @return array
154
+	 * @return string[]
155 155
 	 */
156 156
 	public function getSupportedReportSet($uri) {
157 157
 		return [self::REPORT_NAME];
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 	 * @param string $reportName
164 164
 	 * @param [] $report
165 165
 	 * @param string $uri
166
-	 * @return bool
166
+	 * @return null|false
167 167
 	 * @throws NotFound
168 168
 	 * @throws ReportNotSupported
169 169
 	 */
@@ -336,6 +336,7 @@  discard block
 block discarded – undo
336 336
 	 * with a leading slash but no trailing slash
337 337
 	 * @param string[] $requestedProps requested properties
338 338
 	 * @param Node[] nodes nodes for which to fetch and prepare responses
339
+	 * @param Node[] $nodes
339 340
 	 * @return Response[]
340 341
 	 */
341 342
 	public function prepareResponses($filesUri, $requestedProps, $nodes) {
Please login to merge, or discard this patch.
lib/private/AppFramework/Middleware/Security/SecurityMiddleware.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
 	 * @param bool $isLoggedIn
92 92
 	 * @param bool $isAdminUser
93 93
 	 * @param ContentSecurityPolicyManager $contentSecurityPolicyManager
94
-	 * @param CSRFTokenManager $csrfTokenManager
94
+	 * @param CsrfTokenManager $csrfTokenManager
95 95
 	 */
96 96
 	public function __construct(IRequest $request,
97 97
 								ControllerMethodReflector $reflector,
Please login to merge, or discard this patch.
lib/private/legacy/app.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1344,6 +1344,9 @@  discard block
 block discarded – undo
1344 1344
 		}
1345 1345
 	}
1346 1346
 
1347
+	/**
1348
+	 * @param string $lang
1349
+	 */
1347 1350
 	protected static function findBestL10NOption($options, $lang) {
1348 1351
 		$fallback = $similarLangFallback = $englishFallback = false;
1349 1352
 
@@ -1438,8 +1441,8 @@  discard block
 block discarded – undo
1438 1441
 	}
1439 1442
 
1440 1443
 	/**
1441
-	 * @param $config
1442
-	 * @param $l
1444
+	 * @param OCP\IConfig $config
1445
+	 * @param OCP\IL10N $l
1443 1446
 	 * @param $info
1444 1447
 	 * @throws Exception
1445 1448
 	 */
Please login to merge, or discard this patch.