diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5847735..3fe34de 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # v2.37.1 diff --git a/rector.php b/rector.php index 51448c0..a1291ae 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([ @@ -14,7 +13,6 @@ ]) ->withPhpSets(false, true) ->withRules([ - AddParamArrayDocblockFromDataProviderRector::class, DataProviderAnnotationToAttributeRector::class, ]) ->withTypeCoverageLevel(0)