mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 06:18:07 +01:00
0aac56f223
7f5503ee0b
add some rules to reflection union e2e
18 lines
328 B
PHP
18 lines
328 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return static function (RectorConfig $rectorConfig): void {
|
|
$rectorConfig->paths([
|
|
__DIR__ . '/src'
|
|
]);
|
|
|
|
$rectorConfig->skip([
|
|
__DIR__ . '/vendor',
|
|
]);
|
|
|
|
$rectorConfig->sets([\Rector\Set\ValueObject\SetList::CODE_QUALITY]);
|
|
};
|