Skip to content

Commit 0e4df29

Browse files
committed
Merge branch '3.4' into 4.2
* 3.4: [Form] various minor fixes bugfix: the terminal state was wrong and not reseted [Console] Fix inconsistent result for choice questions in non-interactive mode Define null return type for Constraint::getDefaultOption() [HttpKernel] Fix DebugHandlersListener constructor docblock Skip Glob brace test when GLOB_BRACE is unavailable bumped Symfony version to 3.4.25 updated VERSION for 3.4.24 update CONTRIBUTORS for 3.4.24 updated CHANGELOG for 3.4.24 [EventDispatcher] cleanup
2 parents db5457e + bc36700 commit 0e4df29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Constraint.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,13 @@ public function addImplicitGroupName($group)
232232
*
233233
* Override this method to define a default option.
234234
*
235-
* @return string
235+
* @return string|null
236236
*
237237
* @see __construct()
238238
*/
239239
public function getDefaultOption()
240240
{
241+
return null;
241242
}
242243

243244
/**

0 commit comments

Comments
 (0)