diff options
author | Carl Schwan <carl@carlschwan.eu> | 2021-12-21 15:33:37 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-02-17 11:09:06 +0100 |
commit | 8af40542379df1338a07ec1628147bb79a92be4f (patch) | |
tree | 31879e0445f3f0cd34652de82d619cf588ea6922 /lib/private/Settings | |
parent | 1bfd001cf6add6cb99d5231502c8c19e8dce910a (diff) | |
download | nextcloud-server-8af40542379df1338a07ec1628147bb79a92be4f.tar.gz nextcloud-server-8af40542379df1338a07ec1628147bb79a92be4f.zip |
Fix some issues with the API documentation
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'lib/private/Settings')
-rw-r--r-- | lib/private/Settings/Section.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/private/Settings/Section.php b/lib/private/Settings/Section.php index 6ec0d5ee04a..ba94a38e874 100644 --- a/lib/private/Settings/Section.php +++ b/lib/private/Settings/Section.php @@ -50,20 +50,16 @@ class Section implements IIconSection { } /** - * returns the ID of the section. It is supposed to be a lower case string, + * @return string The ID of the section. It is supposed to be a lower case string, * e.g. 'ldap' - * - * @returns string */ public function getID() { return $this->id; } /** - * returns the translated name as it should be displayed, e.g. 'LDAP / AD + * @return string The translated name as it should be displayed, e.g. 'LDAP / AD * integration'. Use the L10N service to translate it. - * - * @return string */ public function getName() { return $this->name; @@ -81,10 +77,9 @@ class Section implements IIconSection { } /** - * returns the relative path to an 16*16 icon describing the section. + * @return string The relative path to an 16*16 icon describing the section. * e.g. '/core/img/places/files.svg' * - * @returns string * @since 12 */ public function getIcon() { |