major refactoring under the hood
[pharext/pharext] / src / pharext / Task.php
diff --git a/src/pharext/Task.php b/src/pharext/Task.php
new file mode 100644 (file)
index 0000000..473e1a6
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+
+namespace pharext;
+
+/**
+ * Simple task interface
+ */
+interface Task
+{
+       public function run($verbose = false);
+}