From 38560812ba52453bc03a7a8d1d592c2616d5d709 Mon Sep 17 00:00:00 2001 From: Jules Pietri Date: Wed, 26 Jul 2023 09:54:04 +0200 Subject: [PATCH] [Form] Remove an obsolete phpdoc comment --- src/Symfony/Component/Form/FormTypeGuesserInterface.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Symfony/Component/Form/FormTypeGuesserInterface.php b/src/Symfony/Component/Form/FormTypeGuesserInterface.php index 61e2c5f80d45a..54414b9f694a4 100644 --- a/src/Symfony/Component/Form/FormTypeGuesserInterface.php +++ b/src/Symfony/Component/Form/FormTypeGuesserInterface.php @@ -40,13 +40,6 @@ public function guessMaxLength(string $class, string $property); /** * Returns a guess about the field's pattern. * - * - When you have a min value, you guess a min length of this min (LOW_CONFIDENCE) - * - Then line below, if this value is a float type, this is wrong so you guess null with MEDIUM_CONFIDENCE to override the previous guess. - * Example: - * You want a float greater than 5, 4.512313 is not valid but length(4.512314) > length(5) - * - * @see https://github.com/symfony/symfony/pull/3927 - * * @return Guess\ValueGuess|null */ public function guessPattern(string $class, string $property);