Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / consolidation / robo / src / Contract / BuilderAwareInterface.php
diff --git a/vendor/consolidation/robo/src/Contract/BuilderAwareInterface.php b/vendor/consolidation/robo/src/Contract/BuilderAwareInterface.php
new file mode 100644 (file)
index 0000000..d67796f
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+
+namespace Robo\Contract;
+
+use Robo\Collection\CollectionBuilder;
+
+interface BuilderAwareInterface
+{
+    /**
+     * Set the builder reference
+     *
+     * @param \Robo\Collection\CollectionBuilder $builder
+     */
+    public function setBuilder(CollectionBuilder $builder);
+
+    /**
+     * Get the builder reference
+     *
+     * @return \Robo\Collection\CollectionBuilder
+     */
+    public function getBuilder();
+}