* 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; use PhpCsFixer\RuleSet\RuleSetDescriptionInterface; /** * @author Dariusz Rumiński * * @internal */ final class ReportSummary { /** * @var list */ private array $sets; /** * @param list $sets */ public function __construct(array $sets) { $this->sets = $sets; } /** * @return list */ public function getSets(): array { return $this->sets; } }