WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
vendor
/
spip-league
/
composer-installer
/
Name
Action
..
.php-cs-fixer.dist.php
Edit
CHANGELOG.md
Edit
LICENSE
Edit
README.md
Edit
composer.json
Edit
docs
ecs.php
Edit
rector.php
Edit
src
Editing: rector.php
<?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]);