File "rector.php"
Full path: /home/argothem/www/organecyberpresse/vendor/spip-league/composer-installer/rector.php
File size: 454 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
use Rector\CodeQuality\Rector\LogicalAnd\LogicalToBooleanRector;
use Rector\Config\RectorConfig;
use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector;
return RectorConfig::configure()
->withPaths([__DIR__ . '/src', __DIR__ . '/tests'])
->withRootFiles()
->withPhpSets(php74: true)
->withRules([LogicalToBooleanRector::class])
->withSkip([NullToStrictStringFuncCallArgRector::class]);