-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Closed
Description
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;