Sylius/rector.php
Loïc Frémont cf7bd03802
Apply suggestions from code review
Co-authored-by: Kamil Grygierzec <53942444+TheMilek@users.noreply.github.com>
2026-02-17 17:17:22 +01:00

16 lines
392 B
PHP

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\PHPUnit\Set\PHPUnitSetList;
use Rector\Set\ValueObject\LevelSetList;
return RectorConfig::configure()
->withImportNames(importShortClasses: false, removeUnusedImports: true)
->withAttributesSets(behat: true)
->withSets([
LevelSetList::UP_TO_PHP_82,
PHPUnitSetList::PHPUNIT_110,
])
;