aboutsummaryrefslogtreecommitdiff
path: root/src/Handler.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Handler.php')
-rw-r--r--src/Handler.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Handler.php b/src/Handler.php
new file mode 100644
index 0000000..be6cad9
--- /dev/null
+++ b/src/Handler.php
@@ -0,0 +1,10 @@
+<?php
+
+namespace Micropoly;
+
+use Micropoly\Env;
+
+interface Handler
+{
+ public function handle(Env $env, array $variables);
+}