rector/e2e/define-constant/rector.php

12 lines
250 B
PHP

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths([__DIR__ . '/src']);
$rectorConfig->sets([\Rector\Set\ValueObject\SetList::CODE_QUALITY]);
};