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
* 5.4:
[Bridge][Monolog] Add intruction about 'ResetLoggersWorkerSubscriber deprecation' in main UPGRADE-5.4.md
[Security] Move TraceableAuthenticator to security-http
[Form] Check the type of the constraints option
Fixed default behavior
if ([] === array_intersect(static::$validationModes, $formats)) {
77
+
if ([] === array_intersect(self::$validationModes, $formats)) {
78
78
thrownewInvalidArgumentException(sprintf('The "formats" parameter value is not valid. It must contain one or more of the following values: "%s".', $validationModesAsString));
79
79
}
80
80
81
81
$options['value'] = $formats;
82
82
} elseif (\is_string($formats)) {
83
-
if (!\in_array($formats, static::$validationModes)) {
83
+
if (!\in_array($formats, self::$validationModes)) {
84
84
thrownewInvalidArgumentException(sprintf('The "formats" parameter value is not valid. It must contain one or more of the following values: "%s".', $validationModesAsString));
0 commit comments