Files
ibexa-dataflow-bundle/rector.php
2025-02-04 10:01:38 +01:00

20 lines
481 B
PHP

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\ValueObject\PhpVersion;
return RectorConfig::configure()
->withPaths([
__DIR__ . '/src',
__DIR__ . '/tests',
])
->withPhpVersion(PhpVersion::PHP_81)
// uncomment to reach your current PHP version
->withPhpSets(php81: true)
->withTypeCoverageLevel(0)
->withDeadCodeLevel(0)
->withCodeQualityLevel(0)
->withAttributesSets(symfony: true, doctrine: true);