summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'SemanticMediaWiki/includes/context/ContextAware.php')
-rw-r--r--SemanticMediaWiki/includes/context/ContextAware.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/SemanticMediaWiki/includes/context/ContextAware.php b/SemanticMediaWiki/includes/context/ContextAware.php
deleted file mode 100644
index e04e8669..00000000
--- a/SemanticMediaWiki/includes/context/ContextAware.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-namespace SMW;
-
-/**
- * Interface that describes access to a ContextResource object
- *
- * @note It is expected that a context object is either injected using a constructor
- * or implements the ContextInjector interface
- *
- * @ingroup SMW
- *
- * @licence GNU GPL v2+
- * @since 1.9
- *
- * @author mwjames
- */
-interface ContextAware {
-
- /**
- * Returns a ContextResource object
- *
- * @since 1.9
- *
- * @return ContextResource
- */
- public function withContext();
-
-}