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

ci: update rector config for deprecations and skipping data provider … #274

Merged
merged 1 commit into from
Apr 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitSelfCallRector;
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector;
use Rector\PHPUnit\CodeQuality\Rector\MethodCall\AssertCountWithZeroToAssertEmptyRector;
use Rector\PHPUnit\CodeQuality\Rector\Class_\RemoveDataProviderParamKeysRector;
use Rector\PHPUnit\Set\PHPUnitSetList;

return RectorConfig::configure()
Expand All @@ -26,8 +26,8 @@
])
->withImportNames(importNames: true, importShortClasses: false)
->withSkip([
AssertCountWithZeroToAssertEmptyRector::class,
ClosureToArrowFunctionRector::class,
PreferPHPUnitThisCallRector::class,
RemoveDataProviderParamKeysRector::class,
])
->withTypeCoverageLevel(0);
Loading