explicit nullable type must be used for parameters

Created on 23 April 2025, 3 months ago

Problem/Motivation

Issue with multi language Drupal 11.1 site using Twig Tweak

Deprecated
: Drupal\twig_tweak\TwigTweakExtension::drupalField(): Implicitly marking parameter $langcode as nullable is deprecated, the explicit nullable type must be used instead in
/opt/drupal/web/modules/contrib/twig_tweak/src/TwigTweakExtension.php
on line
201

Deprecated
: Drupal\twig_tweak\TwigTweakExtension::drupalImage(): Implicitly marking parameter $style as nullable is deprecated, the explicit nullable type must be used instead in
/opt/drupal/web/modules/contrib/twig_tweak/src/TwigTweakExtension.php
on line
236

Deprecated
: Drupal\twig_tweak\TwigTweakExtension::transliterateFilter(): Implicitly marking parameter $max_length as nullable is deprecated, the explicit nullable type must be used instead in
/opt/drupal/web/modules/contrib/twig_tweak/src/TwigTweakExtension.php
on line
538

Deprecated
: Drupal\twig_tweak\TwigTweakExtension::viewFilter(): Implicitly marking parameter $langcode as nullable is deprecated, the explicit nullable type must be used instead in
/opt/drupal/web/modules/contrib/twig_tweak/src/TwigTweakExtension.php
on line
558

Deprecated
: Drupal\twig_tweak\TwigTweakExtension::entityTranslation(): Implicitly marking parameter $langcode as nullable is deprecated, the explicit nullable type must be used instead in
/opt/drupal/web/modules/contrib/twig_tweak/src/TwigTweakExtension.php
on line
691

Steps to reproduce

Issue with multi language Drupal 11.1 site using Twig Tweak

Proposed resolution

public function drupalField($entity, $field_name, $langcode = null)

should be:

public function drupalField($entity, $field_name, ?string $langcode = null)

(For PHP 8.1+ compatibility (and to remove the deprecation warning), it needs to be so)

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

3.4

Component

Code

Created by

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

Comments & Activities

Production build 0.71.5 2024