summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/StoreAware.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/src/StoreAware.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/src/StoreAware.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/src/StoreAware.php b/www/wiki/extensions/SemanticMediaWiki/src/StoreAware.php
new file mode 100644
index 00000000..fb7cba14
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/src/StoreAware.php
@@ -0,0 +1,22 @@
+<?php
+
+namespace SMW;
+
+/**
+ * Describes an instance that is aware of a Store object.
+ *
+ * @license GNU GPL v2
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+interface StoreAware {
+
+ /**
+ * @since 2.5
+ *
+ * @param Store $store
+ */
+ public function setStore( Store $store );
+
+}