contains a reference to attr.options.size which is not necessarily defined. If running Twig with strict_variables set to true this causes a crash. It should read
{% if attr.options.size ?? null == 'invisible' and attr.options.callback is not defined %}
https://github.com/excelwebzone/EWZRecaptchaBundle/blob/21fea6daaa8b9a4782b2144a63a1e16da25ac519/src/Resources/views/Form/ewz_recaptcha_widget.html.twig#L5
contains a reference to
attr.options.size
which is not necessarily defined. If running Twig withstrict_variables
set to true this causes a crash. It should readand line 38:
in order to function in this environment.