mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
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]);
|
|
};
|