diff --git a/src/FieldDescription/TypeGuesserInterface.php b/src/FieldDescription/TypeGuesserInterface.php new file mode 100644 index 00000000000..998e25a49ae --- /dev/null +++ b/src/FieldDescription/TypeGuesserInterface.php @@ -0,0 +1,22 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Sonata\AdminBundle\FieldDescription; + +use Sonata\AdminBundle\Admin\FieldDescriptionInterface; +use Symfony\Component\Form\Guess\TypeGuess; + +interface TypeGuesserInterface +{ + public function guess(FieldDescriptionInterface $fieldDescription): TypeGuess; +}