19 lines
536 B
PHP
19 lines
536 B
PHP
<?php
|
|
|
|
namespace Consolidation\OutputFormatters\Options;
|
|
|
|
use Consolidation\OutputFormatters\Options\FormatterOptions;
|
|
|
|
interface OverrideOptionsInterface
|
|
{
|
|
/**
|
|
* Allow the formatter to mess with the configuration options before any
|
|
* transformations et. al. get underway.
|
|
*
|
|
* @param mixed $structuredOutput Data to restructure
|
|
* @param FormatterOptions $options Formatting options
|
|
* @return FormatterOptions
|
|
*/
|
|
public function overrideOptions($structuredOutput, FormatterOptions $options);
|
|
}
|