Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/issuetemplate.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ISection.php')
-rw-r--r--lib/ISection.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/ISection.php b/lib/ISection.php
index 9c5a247..a2df8e9 100644
--- a/lib/ISection.php
+++ b/lib/ISection.php
@@ -31,22 +31,31 @@ namespace OCA\IssueTemplate;
interface ISection {
/**
+ * Returns a unique identifier for the section
+ *
+ * Predefined sections are server, client and log
* @return string
*/
public function getIdentifier();
/**
+ * Returns a human readable title for the section
+ *
* @return string
*/
public function getTitle();
/**
+ * Adds a detail entry to a section
+ *
* @param IDetail $details
* @return void
*/
public function addDetail(IDetail $details);
/**
+ * Get all details contained in the section
+ *
* @return IDetail[]
*/
public function getDetails();