From ba5059e10fa24b62501e79f0fd9f2e81ba321fb2 Mon Sep 17 00:00:00 2001 From: Alexandre Daubois Date: Tue, 4 Jul 2023 10:13:58 +0200 Subject: [PATCH] [ExpressionLanguage] `in` and `not in` operators are using strict comparison --- reference/formats/expression_language.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/reference/formats/expression_language.rst b/reference/formats/expression_language.rst index 18811c0ca44..ebb7574922c 100644 --- a/reference/formats/expression_language.rst +++ b/reference/formats/expression_language.rst @@ -352,12 +352,9 @@ For example:: The ``$inGroup`` would evaluate to ``true``. -.. deprecated:: 6.3 +.. note:: - In Symfony versions previous to 6.3, ``in`` and ``not in`` operators - were using loose comparison. Using these operators with variables of - different types is now deprecated, and these operators will be using - strict comparison from Symfony 7.0. + The ``in`` and ``not in`` operators are using strict comparison. Numeric Operators ~~~~~~~~~~~~~~~~~