Skip to content

Commit f96b0c0

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: Update ExceptionInterface.php Revert removal of Stringable check Flush with flush() after ob_end_flush() [Validator] : Fix "PHP Warning: Undefined array key 1" in NotCompromisedPasswordValidator [Validator] Fix traverse option on Valid constraint when used as Attribute [HttpFoundation] Fix deleteFileAfterSend on client abortion Prevent that bad Ignore method annotations lead to incorrect results also fix the test fix deprecation fix sending request to paths containing multiple slashes Fix generated validation error message for wrong exception mapping status code
2 parents 98018c8 + 8d15bac commit f96b0c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ private function addExceptionsSection(ArrayNodeDefinition $rootNode)
12071207
->info('The status code of the response. Null to let Symfony decide.')
12081208
->validate()
12091209
->ifTrue(function ($v) { return $v < 100 || $v > 599; })
1210-
->thenInvalid('The log level is not valid. Pick a value between 100 and 599.')
1210+
->thenInvalid('The status code is not valid. Pick a value between 100 and 599.')
12111211
->end()
12121212
->defaultNull()
12131213
->end()

0 commit comments

Comments
 (0)