* Dariusz Rumiński * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Console\Report\ListSetsReport; /** * @author Dariusz Rumiński * * @internal */ interface ReporterInterface { public function getFormat(): string; /** * Process changed files array. Returns generated report. */ public function generate(ReportSummary $reportSummary): string; }