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.php53
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/ISection.php b/lib/ISection.php
new file mode 100644
index 0000000..9c5a247
--- /dev/null
+++ b/lib/ISection.php
@@ -0,0 +1,53 @@
+<?php
+/**
+ * @copyright Copyright (c) 2017 Julius Härtl <jus@bitgrid.net>
+ *
+ * @author Julius Härtl <jus@bitgrid.net>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\IssueTemplate;
+
+/**
+ * Interface ISection
+ *
+ * @package OCA\IssueTemplate
+ */
+interface ISection {
+
+ /**
+ * @return string
+ */
+ public function getIdentifier();
+
+ /**
+ * @return string
+ */
+ public function getTitle();
+
+ /**
+ * @param IDetail $details
+ * @return void
+ */
+ public function addDetail(IDetail $details);
+
+ /**
+ * @return IDetail[]
+ */
+ public function getDetails();
+} \ No newline at end of file