Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / consolidation / robo / src / Contract / ProgressInterface.php
diff --git a/vendor/consolidation/robo/src/Contract/ProgressInterface.php b/vendor/consolidation/robo/src/Contract/ProgressInterface.php
new file mode 100644 (file)
index 0000000..0c99343
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+namespace Robo\Contract;
+
+/**
+ * Robo tasks that take multiple steps to complete should
+ * implement this interface.
+ *
+ * Interface ProgressInterface
+ * @package Robo\Contract
+ */
+interface ProgressInterface
+{
+    /**
+     *
+     * @return int
+     */
+    public function progressSteps();
+}