Include the Rector Twig set list

Created on 14 April 2023, almost 2 years ago
Updated 22 August 2023, over 1 year ago

Drupal version

9.5.7

Drupal Rector version

0.15.24

Problem / Motivation

On a project I'm working on to upgrade from Drupal 9.5 to Drupal 10, I ran into many custom Twig plugins that had Twig 2.x deprecations that needed to be updated in preparation for Twig 3.x which is required by Drupal 10 ( https://www.drupal.org/node/3256890 β†’ ). Things like:

Before:

<?php

$function = new Twig_SimpleFunction('path', function ($string) {
  if ($string === '<front>') {
    return '/';
  } else {
    return $string;
  }
});

After:

<?php
use Twig\TwigFunction;

$function = new TwigFunction('path', function ($string) {
  if ($string === '<front>') {
    return '/';
  } else {
    return $string;
  }
});

There are many other class renamings from Twig 2.x to 3.x like this. Rector has rules to cover these via rector/rector-symfony. They are part of set list, TwigSetList::TWIG_240: https://github.com/rectorphp/rector-symfony/blob/main/src/Set/TwigSetLis.... When I include this set list in my custom rector.php, it works really well.

Can we include this in the defaults for Drupal rector?

✨ Feature request
Status

Fixed

Component

Code

Created by

πŸ‡¨πŸ‡¦Canada m4olivei Grimsby, ON

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

Comments & Activities

Production build 0.71.5 2024