add missing null return type

This commit is contained in:
Christian Flothmann 2019-02-08 18:03:34 +01:00
parent bb54e40ca7
commit 03abfc09bd

View File

@ -32,7 +32,7 @@ interface FormTypeGuesserInterface
* @param string $class The fully qualified class name
* @param string $property The name of the property to guess for
*
* @return Guess\ValueGuess A guess for the field's required setting
* @return Guess\ValueGuess|null A guess for the field's required setting
*/
public function guessRequired($class, $property);