04a09e9676096a8d1ebf922a6fa67c5c36264ed5
[yaffs-website] / vendor / consolidation / output-formatters / src / Options / OverrideOptionsInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\Options;
3
4 use Consolidation\OutputFormatters\Options\FormatterOptions;
5
6 interface OverrideOptionsInterface
7 {
8     /**
9      * Allow the formatter to mess with the configuration options before any
10      * transformations et. al. get underway.
11      *
12      * @param mixed $structuredOutput Data to restructure
13      * @param FormatterOptions $options Formatting options
14      * @return FormatterOptions
15      */
16     public function overrideOptions($structuredOutput, FormatterOptions $options);
17 }