You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
718 B
PHP
30 lines
718 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Set\ValueObject\LevelSetList;
|
|
|
|
return static function (RectorConfig $rectorConfig): void {
|
|
$rectorConfig->paths([
|
|
__DIR__ . '/action',
|
|
__DIR__ . '/base',
|
|
__DIR__ . '/formulaires',
|
|
__DIR__ . '/inc',
|
|
__DIR__ . '/metadata',
|
|
__DIR__ . '/modeles',
|
|
__DIR__ . '/prive',
|
|
__DIR__ . '/puce_statut',
|
|
__DIR__ . '/urls',
|
|
__DIR__ . '/medias_administration.php',
|
|
__DIR__ . '/medias_autoriser.php',
|
|
__DIR__ . '/medias_fonctions.php',
|
|
__DIR__ . '/medias_ieconfig.php',
|
|
__DIR__ . '/medias_pipelines.php',
|
|
]);
|
|
|
|
$rectorConfig->sets([
|
|
LevelSetList::UP_TO_PHP_81
|
|
]);
|
|
};
|