1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00
wallabag/rector.php

19 lines
414 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([
__DIR__ . '/app',
__DIR__ . '/fixtures',
__DIR__ . '/src',
__DIR__ . '/tests',
__DIR__ . '/web',
])
->withImportNames(importShortClasses: false)
2025-04-05 13:09:47 +02:00
->withAttributesSets(doctrine: true)
2025-04-05 13:20:44 +02:00
->withPhpSets(php74: true)
->withTypeCoverageLevel(0);