Project

General

Profile

Task #103180 ยป rector.php

Christian Kuhn, 2024-02-22 15:06

 
<?php

declare(strict_types=1);

use Rector\Config\RectorConfig;
use Rector\PHPUnit\Set\PHPUnitSetList;

return RectorConfig::configure()
->withSets([
PHPUnitSetList::ANNOTATIONS_TO_ATTRIBUTES,
])
->withImportNames(importShortClasses: false)
->withoutParallel();
    (1-1/1)