Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / consolidation / robo / src / Contract / OutputAdapterInterface.php
diff --git a/vendor/consolidation/robo/src/Contract/OutputAdapterInterface.php b/vendor/consolidation/robo/src/Contract/OutputAdapterInterface.php
new file mode 100644 (file)
index 0000000..948d384
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+namespace Robo\Contract;
+
+/**
+ * Adapt OutputInterface or other output function to the VerbosityThresholdInterface.
+ */
+interface OutputAdapterInterface
+{
+    public function verbosityMeetsThreshold($verbosityThreshold);
+    public function writeMessage($message);
+}