Skip to content

Commit ada4272

Browse files
committed
minor #30119 [Form] add missing null return type (xabbuh)
This PR was merged into the 3.4 branch. Discussion ---------- [Form] add missing null return type | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | This reflects how all our implementations of this interface actually behave. Commits ------- 03abfc09bd add missing null return type
2 parents a9ab886 + e59241c commit ada4272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FormTypeGuesserInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function guessType($class, $property);
3232
* @param string $class The fully qualified class name
3333
* @param string $property The name of the property to guess for
3434
*
35-
* @return Guess\ValueGuess A guess for the field's required setting
35+
* @return Guess\ValueGuess|null A guess for the field's required setting
3636
*/
3737
public function guessRequired($class, $property);
3838

0 commit comments

Comments
 (0)