Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / output-formatters / src / Transformations / StringTransformationInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\Transformations;
3
4 use Consolidation\OutputFormatters\Options\FormatterOptions;
5
6 interface StringTransformationInterface
7 {
8     /**
9      * simplifyToString is called by the string formatter to convert
10      * structured data to a simple string.
11      */
12     public function simplifyToString(FormatterOptions $options);
13 }