You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ChoiceValidator.php, an error is triggered when the options strict is false if (false === $constraint->strict) { @trigger_error('Setting the strict option of the Choice constraint to false is deprecated since version 3.2 and will be removed in 4.0.', E_USER_DEPRECATED); }
But the option is set to false by default in Choice.php public $strict = false;
The text was updated successfully, but these errors were encountered:
In ChoiceValidator.php, an error is triggered when the options strict is false
if (false === $constraint->strict) { @trigger_error('Setting the strict option of the Choice constraint to false is deprecated since version 3.2 and will be removed in 4.0.', E_USER_DEPRECATED); }
But the option is set to false by default in Choice.php
public $strict = false;
The text was updated successfully, but these errors were encountered: