<?php
namespace App\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
class TelephoneType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function getParent(): ?string
{
return TextType::class;
}
/**
* {@inheritdoc}
*/
public function getBlockPrefix(): string
{
return 'tel';
}
}