829d775376aa679c3bf47b74c9046919caa0666a
[yaffs-website] / vendor / consolidation / output-formatters / src / StructuredData / ListDataInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\StructuredData;
3
4 use Consolidation\OutputFormatters\Options\FormatterOptions;
5
6 interface ListDataInterface
7 {
8     /**
9      * Convert data to a format suitable for use in a list.
10      * By default, the array values will be used.  Implement
11      * ListDataInterface to use some other criteria (e.g. array keys).
12      *
13      * @return array
14      */
15     public function getListData(FormatterOptions $options);
16 }