- Issue created by @pdureau
- 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦
I was getting this warning with a test like
if variable is defined
. In my case, I wanted the condition to be true ifvariable
was zero. That would not be the case if I had usedif variable
. - 🇫🇷France pdureau Paris
From Liam in 🐛 The "empty is not needed" test is not correct Active
This condition:
{% if variable is not empty %}
raised the warning "The exact same as just testing the variable, empty is not needed."But if I switched it to:
{% if variable %}
then the condition would fail ifvariable
was zero.Let's check if
empty
is really same as just testing the variable before setting our "liberal" list of warnings. - 🇫🇷France pdureau Paris
Some references:
- 🇫🇷France mogtofu33
I am not sure to get the whole scope of changes and result expected here, could we be more clear and give testable examples:
{% set variable = '' %} {% if variable is not empty %}{% endif %}
=> Warning
{% set variable = [] %} {% if variable is not empty %}{% endif %}
=> Warning
{% set variable = 0 %} {% if variable is not empty %}{% endif %}
=> No warning
{% set variable = null %} {% if variable is not empty %}{% endif %}
=> ?
{% set variable = true %} {% if variable is not empty %}{% endif %}
=> ?
{% set variable = false %} {% if variable is not empty %}{% endif %}
=> ?
{% set variable = injected_variable %} {% if variable is not empty %}{% endif %}
=> From previous rules based on type of injected variable?
{% set variable = set_variable_before %} {% if variable is not empty %}{% endif %}
=> Probably hard to detect as the vriable is set in the template.