Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / output-formatters / src / StructuredData / UnstructuredInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\StructuredData;
3
4 use Consolidation\OutputFormatters\Options\FormatterOptions;
5
6 /**
7  * UnstructuredInterface is a marker interface that indicates that the
8  * data type is unstructured, and has no default conversion to a string.
9  * Unstructured data supports the `string` format only if it also implements
10  * StringTransformationInterface.
11  */
12 interface UnstructuredInterface
13 {
14 }