Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / output-formatters / src / StructuredData / TableDataInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\StructuredData;
3
4 interface TableDataInterface
5 {
6     /**
7      * Convert structured data into a form suitable for use
8      * by the table formatter.
9      *
10      * @param boolean $includeRowKey Add a field containing the
11      *   key from each row.
12      *
13      * @return array
14      */
15     public function getTableData($includeRowKey = false);
16 }