file_size deprecation rule keeps reporting as needs to be processed after replacement

Created on 11 January 2024, about 1 year ago
Updated 31 January 2024, about 1 year ago

Drupal version

10.2

Drupal Rector version

0.19.0

Problem / Motivation

This change added new rule - https://www.drupal.org/project/rector/issues/3413972 ✨ New rector (10.2): Deprecate format_size() Fixed

This change does not have a fence for already replaced code. As a result - already processed code is reported as "needs fixing". Applying the fix again, results in another replacement, leading to unlimited requests to a replacement.

--- a/web/themes/contrib/civictheme/includes/utilities.inc
+++ b/web/themes/contrib/civictheme/includes/utilities.inc

-    'size' => DeprecationHelper::backwardsCompatibleCall(\Drupal::VERSION, '10.2.0', static fn() => format_size($file->getSize()), static fn(): TranslatableMarkup => ByteSizeMarkup::create($file->getSize())),
+    'size' => DeprecationHelper::backwardsCompatibleCall(\Drupal::VERSION, '10.2.0', static fn(): mixed => DeprecationHelper::backwardsCompatibleCall(\Drupal::VERSION, '10.2.0', static fn() => DeprecationHelper::backwardsCompatibleCall(\Drupal::VERSION, '10.2.0', static fn() => format_size($file->getSize()):

I think the CI needs to be updated to run the check twice to make sure that re-applying the rules on already fixed code does not trigger another need for a fix.

Possible resolution

This is pending on https://github.com/phpstan/phpstan-deprecation-rules/issues/107

Temporary workaround

Do not use Drupal10SetList::DRUPAL_102 in your rector.php

πŸ› Bug report
Status

Fixed

Component

Code

Created by

πŸ‡¦πŸ‡ΊAustralia alex.skrypnyk Melbourne

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024