10 lines
164 B
PHP
10 lines
164 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()->withPaths([
|
|
__DIR__ . '/src',
|
|
])
|
|
->withPhp74Sets();
|