Completed
Pull Request — master (#26449)
by Tom
09:27
created
lib/private/legacy/app.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 
165 165
 	/**
166 166
 	 * Enables the app as a theme if it has the type "theme"
167
-	 * @param $app
167
+	 * @param string $app
168 168
 	 */
169 169
 	private static function enableTheme($app) {
170 170
 		if (self::isType($app, 'theme')) {
@@ -1365,8 +1365,8 @@  discard block
 block discarded – undo
1365 1365
 	}
1366 1366
 
1367 1367
 	/**
1368
-	 * @param $config
1369
-	 * @param $l
1368
+	 * @param OCP\IConfig $config
1369
+	 * @param OCP\IL10N $l
1370 1370
 	 * @param $info
1371 1371
 	 * @throws Exception
1372 1372
 	 */
Please login to merge, or discard this patch.
apps/dav/lib/CardDAV/ImageExportPlugin.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -136,6 +136,9 @@
 block discarded – undo
136 136
 		return false;
137 137
 	}
138 138
 
139
+	/**
140
+	 * @param string $cardData
141
+	 */
139 142
 	private function readCard($cardData) {
140 143
 		return Reader::read($cardData);
141 144
 	}
Please login to merge, or discard this patch.
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.
settings/Controller/SettingsPageController.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 use OCP\AppFramework\Controller;
26 26
 use OCP\IURLGenerator;
27 27
 use OCP\IRequest;
28
-use OCP\Template;
29 28
 use OCP\AppFramework\Http\TemplateResponse;
30 29
 
31 30
 /**
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 	 * Creates the personal settings page
58 58
 	 * @NoAdminRequired
59 59
 	 * @NoCSRFRequired
60
-	 * @param string $sectionID
60
+	 * @param string $sectionid
61 61
 	 * @return \OCP\TemplateResponse
62 62
 	 */
63 63
 	public function getPersonal($sectionid) {
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	/**
69 69
 	 * Creates the admin settings page
70 70
 	 * @NoCSRFRequired
71
-	 * @param string $sectionID
71
+	 * @param string $sectionid
72 72
 	 * @return \OCP\TemplateResponse
73 73
 	 */
74 74
 	public function getAdmin($sectionid) {
Please login to merge, or discard this patch.