b6cfa83a7a1559f2bd9a1806bef711ec030cea28
[yaffs-website] / vendor / consolidation / output-formatters / src / StructuredData / RestructureInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\StructuredData;
3
4 use Consolidation\OutputFormatters\Options\FormatterOptions;
5
6 interface RestructureInterface
7 {
8     /**
9      * Allow structured data to be restructured -- i.e. to select fields
10      * to show, reorder fields, etc.
11      *
12      * @param FormatterOptions $options Formatting options
13      */
14     public function restructure(FormatterOptions $options);
15 }