Version 1
[yaffs-website] / vendor / consolidation / output-formatters / src / StructuredData / RenderCellCollectionInterface.php
diff --git a/vendor/consolidation/output-formatters/src/StructuredData/RenderCellCollectionInterface.php b/vendor/consolidation/output-formatters/src/StructuredData/RenderCellCollectionInterface.php
new file mode 100644 (file)
index 0000000..8e80aff
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+namespace Consolidation\OutputFormatters\StructuredData;
+
+interface RenderCellCollectionInterface extends RenderCellInterface
+{
+    const PRIORITY_FIRST = 'first';
+    const PRIORITY_NORMAL = 'normal';
+    const PRIORITY_FALLBACK = 'fallback';
+
+    /**
+     * Add a renderer
+     *
+     * @return $this
+     */
+    public function addRenderer(RenderCellInterface $renderer);
+}