f88573d8b4bc72809329e9342f8cf9107fdbfe1d
[yaffs-website] / vendor / consolidation / output-formatters / src / StructuredData / RenderCellCollectionInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\StructuredData;
3
4 use Consolidation\OutputFormatters\Formatters\FormatterAwareInterface;
5
6 interface RenderCellCollectionInterface extends RenderCellInterface, FormatterAwareInterface
7 {
8     const PRIORITY_FIRST = 'first';
9     const PRIORITY_NORMAL = 'normal';
10     const PRIORITY_FALLBACK = 'fallback';
11
12     /**
13      * Add a renderer
14      *
15      * @return $this
16      */
17     public function addRenderer(RenderCellInterface $renderer);
18 }