Closed
Description
Symfony version(s) affected
5.4.31, 6.4.0, 7.0.0, 7.1
Description
The twig_*
global functions are deprecated in Twig 3.9 twigphp/Twig#3883, and removed in Twig 4.0 twigphp/Twig#3937
The function twig_test_empty
is used in Symfony\Bridge\Twig\Node\SearchAndRenderBlockNode
:
How to reproduce
composer create-project symfony/demo
composer require "twig/twig: 3.x-dev"
Go to https://localhost:8000/fr/admin/post/1/edit
Deprecation message:
Since twig/twig 3.9.0: Using the internal "twig_test_empty" function is deprecated.
Possible Solution
Duplicate the function as a static method in SearchAndRenderBlockNode
.
Additional Context
No response