mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 05:18:18 +01:00
10 lines
175 B
PHP
10 lines
175 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Rector\Config\RectorConfig;
|
||
|
|
||
|
return static function (RectorConfig $rectorConfig): void {
|
||
|
$rectorConfig->paths([__DIR__ . '/src']);
|
||
|
};
|