mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-16 21:08:19 +01:00
3b4fc37371
6459357ea3
add some rules to define-constant e2e
12 lines
250 B
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]);
|
|
};
|