Completed
Pull Request — master (#26449)
by Tom
07: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.
settings/Controller/SettingsPageController.php 2 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
 	 * Creates the personal settings page
58 58
 	 * @NoAdminRequired
59 59
 	 * @NoCSRFRequired
60
-	 * @param string $sectionID
61
-	 * @return \OCP\TemplateResponse
60
+	 * @param string $sectionid
61
+	 * @return TemplateResponse
62 62
 	*/
63 63
 	public function getPersonal($sectionid) {
64 64
 		$this->currentSectionID = $sectionid;
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	/**
69 69
 	 * Creates the admin settings page
70 70
 	 * @NoCSRFRequired
71
-	 * @param string $sectionID
72
-	 * @return \OCP\TemplateResponse
71
+	 * @param string $sectionid
72
+	 * @return TemplateResponse
73 73
 	 */
74 74
 	public function getAdmin($sectionid) {
75 75
 		$this->currentSectionID = $sectionid;
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	/**
80 80
 	 * Generates a settings page given the type (personal/admin)
81 81
 	 * @param string $type
82
-	 * @return \OCP\TemplateResponse
82
+	 * @return TemplateResponse
83 83
 	 */
84 84
 	protected function createSettingsPage($type) {
85 85
 		// Load sections and panels
Please login to merge, or discard this patch.
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.