From 0f2331bdbb285f364c471a2ec71cbec614485e7c Mon Sep 17 00:00:00 2001 From: bjorn Date: Sat, 25 Nov 2023 12:25:44 +0100 Subject: [PATCH] Add 10.2 set to config --- config/drupal-10/drupal-10-all-deprecations.php | 1 + src/Set/Drupal10SetList.php | 1 + 2 files changed, 2 insertions(+) diff --git a/config/drupal-10/drupal-10-all-deprecations.php b/config/drupal-10/drupal-10-all-deprecations.php index d7667917..43cbdd84 100644 --- a/config/drupal-10/drupal-10-all-deprecations.php +++ b/config/drupal-10/drupal-10-all-deprecations.php @@ -9,6 +9,7 @@ $rectorConfig->sets([ Drupal10SetList::DRUPAL_100, Drupal10SetList::DRUPAL_101, + Drupal10SetList::DRUPAL_102, ]); $rectorConfig->bootstrapFiles([ diff --git a/src/Set/Drupal10SetList.php b/src/Set/Drupal10SetList.php index aafeb6e5..768e2eba 100644 --- a/src/Set/Drupal10SetList.php +++ b/src/Set/Drupal10SetList.php @@ -11,4 +11,5 @@ final class Drupal10SetList implements SetListInterface public const DRUPAL_10 = __DIR__.'/../../config/drupal-10/drupal-10-all-deprecations.php'; public const DRUPAL_100 = __DIR__.'/../../config/drupal-10/drupal-10.0-deprecations.php'; public const DRUPAL_101 = __DIR__.'/../../config/drupal-10/drupal-10.1-deprecations.php'; + public const DRUPAL_102 = __DIR__.'/../../config/drupal-10/drupal-10.2-deprecations.php'; }