We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a55334a commit 795fbc7Copy full SHA for 795fbc7
2 files changed
RELEASE-NOTES.md
@@ -3,6 +3,7 @@
3
## Version 9.3.0 (development)
4
5
* Raised minimum PHP version to 7.1
6
+* Added `TermTypes` with term type constants
7
8
## Version 9.2.0 (2020-01-24)
9
src/Term/TermTypes.php
@@ -0,0 +1,18 @@
1
+<?php
2
+
+namespace Wikibase\DataModel\Term;
+/**
+ * Term types used on Items and Properties
+ *
+ * @since 9.3
10
+ * @license GPL-2.0-or-later
11
+ */
12
+final class TermTypes {
13
14
+ public const TYPE_LABEL = 'label';
15
+ public const TYPE_DESCRIPTION = 'description';
16
+ public const TYPE_ALIAS = 'alias';
17
18
+}
0 commit comments