summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CommentStreams/.phan/stubs/SemanticData.php')
-rw-r--r--CommentStreams/.phan/stubs/SemanticData.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/CommentStreams/.phan/stubs/SemanticData.php b/CommentStreams/.phan/stubs/SemanticData.php
new file mode 100644
index 00000000..979afb6f
--- /dev/null
+++ b/CommentStreams/.phan/stubs/SemanticData.php
@@ -0,0 +1,29 @@
+<?php
+
+namespace SMW;
+
+use SMWDataItem;
+
+class SemanticData {
+ /**
+ * @param DIProperty $property
+ * @return SMWDataItem[]
+ */
+ public function getPropertyValues( DIProperty $property ) {
+ return [];
+ }
+
+ /**
+ * @return DIWikiPage subject
+ */
+ public function getSubject() {
+ return new DIWikiPage();
+ }
+
+ /**
+ * @param DIProperty $property
+ * @param SMWDataItem $dataItem
+ */
+ public function addPropertyObjectValue( DIProperty $property, SMWDataItem $dataItem ) {
+ }
+}