Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / consolidation / robo / src / Contract / OutputAwareInterface.php
diff --git a/vendor/consolidation/robo/src/Contract/OutputAwareInterface.php b/vendor/consolidation/robo/src/Contract/OutputAwareInterface.php
new file mode 100644 (file)
index 0000000..570afed
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * Provide OutputAwareInterface, not present in Symfony Console
+ */
+
+namespace Robo\Contract;
+
+use Symfony\Component\Console\Output\OutputInterface;
+
+interface OutputAwareInterface
+{
+    /**
+     * Sets the Console Output.
+     *
+     * @param \Symfony\Component\Console\Output\OutputInterface $output
+     */
+    public function setOutput(OutputInterface $output);
+}