Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 4c9138e

Browse files
authored
ci: update rector config for deprecations and skipping data provider … (#274)
…rule
1 parent 375a11f commit 4c9138e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
77
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitSelfCallRector;
88
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector;
9-
use Rector\PHPUnit\CodeQuality\Rector\MethodCall\AssertCountWithZeroToAssertEmptyRector;
9+
use Rector\PHPUnit\CodeQuality\Rector\Class_\RemoveDataProviderParamKeysRector;
1010
use Rector\PHPUnit\Set\PHPUnitSetList;
1111

1212
return RectorConfig::configure()
@@ -26,8 +26,8 @@
2626
])
2727
->withImportNames(importNames: true, importShortClasses: false)
2828
->withSkip([
29-
AssertCountWithZeroToAssertEmptyRector::class,
3029
ClosureToArrowFunctionRector::class,
3130
PreferPHPUnitThisCallRector::class,
31+
RemoveDataProviderParamKeysRector::class,
3232
])
3333
->withTypeCoverageLevel(0);

0 commit comments

Comments
 (0)