Files
php-xmpp/rector.php
2024-09-13 14:11:34 +02:00

18 lines
379 B
PHP

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\Renaming\Rector\Name\RenameClassRector;
return RectorConfig::configure()
->withPaths([
__DIR__.'/src',
__DIR__.'/tests',
])
->withPreparedSets(deadCode: true)
// uncomment to reach your current PHP version
->withPhpSets(php82: true)
->withTypeCoverageLevel(7)
;