51a6ea8720a93e6896b96ed5c9a0856fa1650817
[yaffs-website] / vendor / consolidation / output-formatters / src / Transformations / OverrideRestructureInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\Transformations;
3
4 use Consolidation\OutputFormatters\Options\FormatterOptions;
5
6 interface OverrideRestructureInterface
7 {
8     /**
9      * Select data to use directly from the structured output,
10      * before the restructure operation has been executed.
11      *
12      * @param mixed $structuredOutput Data to restructure
13      * @param FormatterOptions $options Formatting options
14      * @return mixed
15      */
16     public function overrideRestructure($structuredOutput, FormatterOptions $options);
17 }