From 27bb1c499d7780d61e43569aaba5d62096478a0d Mon Sep 17 00:00:00 2001 From: Fran Moreno Date: Sun, 2 Aug 2020 20:37:15 +0200 Subject: [PATCH] Fix typehint phpdoc --- src/Symfony/Component/Form/Guess/Guess.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Form/Guess/Guess.php b/src/Symfony/Component/Form/Guess/Guess.php index b216af5d55..82b28f94d0 100644 --- a/src/Symfony/Component/Form/Guess/Guess.php +++ b/src/Symfony/Component/Form/Guess/Guess.php @@ -60,9 +60,9 @@ abstract class Guess * If there are multiple guesses with the same, highest confidence, the * returned guess is any of them. * - * @param Guess[] $guesses An array of guesses + * @param static[] $guesses An array of guesses * - * @return self|null + * @return static|null */ public static function getBestGuess(array $guesses) {