diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b1fbcf..1fd0550 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: rector-check: 'yes' steps: - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2.37.2 diff --git a/rector.php b/rector.php index 4e35cca..703ee33 100644 --- a/rector.php +++ b/rector.php @@ -4,7 +4,6 @@ use Rector\Config\RectorConfig; use Rector\PHPUnit\AnnotationsToAttributes\Rector\ClassMethod\DataProviderAnnotationToAttributeRector; -use Rector\TypeDeclarationDocblocks\Rector\ClassMethod\AddParamArrayDocblockFromDataProviderRector; return RectorConfig::configure() ->withPaths([ @@ -15,7 +14,6 @@ // uncomment to reach your current PHP version ->withPhpSets(false, true) ->withRules([ - AddParamArrayDocblockFromDataProviderRector::class, DataProviderAnnotationToAttributeRector::class, ]) ->withTypeCoverageLevel(0)