From c3276ae0aee94af9776307404e154f58bc8b84f9 Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Sun, 30 Jun 2024 10:43:11 +0200 Subject: [PATCH] Remove NamedArgumentForDataProviderRector from the PHPUnit 11 set as optional upgrade path --- config/sets/phpunit110.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/sets/phpunit110.php b/config/sets/phpunit110.php index 6b580784..74a42ef4 100644 --- a/config/sets/phpunit110.php +++ b/config/sets/phpunit110.php @@ -3,8 +3,6 @@ declare(strict_types=1); use Rector\Config\RectorConfig; -use Rector\PHPUnit\PHPUnit110\Rector\Class_\NamedArgumentForDataProviderRector; return static function (RectorConfig $rectorConfig): void { - $rectorConfig->rules([NamedArgumentForDataProviderRector::class]); };