From aa11559a77bda0331d9d331345e1209e3ab234c4 Mon Sep 17 00:00:00 2001 From: Timo Huisman Date: Thu, 11 Jan 2024 19:58:42 +0100 Subject: [PATCH] refactor: remove duplicated SymfonyLevelSetList --- config/drupal-10/drupal-10.2-deprecations.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/config/drupal-10/drupal-10.2-deprecations.php b/config/drupal-10/drupal-10.2-deprecations.php index 93953287..e7c3122c 100644 --- a/config/drupal-10/drupal-10.2-deprecations.php +++ b/config/drupal-10/drupal-10.2-deprecations.php @@ -5,13 +5,8 @@ use DrupalRector\Rector\Deprecation\FunctionToStaticRector; use DrupalRector\Rector\ValueObject\FunctionToStaticConfiguration; use Rector\Config\RectorConfig; -use Rector\Symfony\Set\SymfonyLevelSetList; return static function (RectorConfig $rectorConfig): void { - $rectorConfig->sets([ - SymfonyLevelSetList::UP_TO_SYMFONY_63, - ]); - // https://www.drupal.org/node/2999981 $rectorConfig->ruleWithConfiguration(FunctionToStaticRector::class, [ new FunctionToStaticConfiguration('10.2.0', 'format_size', '\Drupal\Core\StringTranslation\ByteSizeMarkup', 'create'),