File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Wikibase \DataModel \Term ;
4+
5+ /**
6+ * @since 4.0
7+ *
8+ * @licence GNU GPL v2+
9+ * @author Bene* < benestar.wikimedia@gmail.com >
10+ */
11+ interface AliasesProvider {
12+
13+ /**
14+ * @return AliasGroupList
15+ */
16+ public function getAliases ();
17+
18+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Wikibase \DataModel \Term ;
4+
5+ /**
6+ * @since 4.0
7+ *
8+ * @licence GNU GPL v2+
9+ * @author Bene* < benestar.wikimedia@gmail.com >
10+ */
11+ interface DescriptionsProvider {
12+
13+ /**
14+ * @return TermList
15+ */
16+ public function getDescriptions ();
17+
18+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Wikibase \DataModel \Term ;
4+
5+ /**
6+ * @since 4.0
7+ *
8+ * @licence GNU GPL v2+
9+ * @author Bene* < benestar.wikimedia@gmail.com >
10+ */
11+ interface LabelsProvider {
12+
13+ /**
14+ * @return TermList
15+ */
16+ public function getLabels ();
17+
18+ }
You can’t perform that action at this time.
0 commit comments