summaryrefslogtreecommitdiffstats
path: root/source/InputDependentInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'source/InputDependentInterface.php')
-rw-r--r--source/InputDependentInterface.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/source/InputDependentInterface.php b/source/InputDependentInterface.php
new file mode 100644
index 0000000..0d65b0b
--- /dev/null
+++ b/source/InputDependentInterface.php
@@ -0,0 +1,21 @@
+<?php
+/**
+ * @author stev leibelt <artodeto@bazzline.net>
+ * @since 2014-08-20
+ */
+
+/**
+ * Interface InputDependentInterface
+ */
+interface InputDependentInterface
+{
+ /**
+ * @return Input
+ */
+ public function getInput();
+
+ /**
+ * @param Input $input
+ */
+ public function setInput(Input $input);
+} \ No newline at end of file