X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/6f3158f30f33264488887f5a0c8e271cb7d17747..refs/heads/master:/Form/ContactType.php diff --git a/Form/ContactType.php b/Form/ContactType.php index adee525..4142c99 100644 --- a/Form/ContactType.php +++ b/Form/ContactType.php @@ -1,4 +1,13 @@ - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ namespace Rapsys\AirBundle\Form; @@ -13,6 +22,9 @@ use Symfony\Component\Form\Extension\Core\Type\SubmitType; use Symfony\Component\Validator\Constraints\Email; use Symfony\Component\Validator\Constraints\NotBlank; +/** + * {@inheritdoc} + */ class ContactType extends CaptchaType { /** * {@inheritdoc} @@ -34,6 +46,9 @@ class ContactType extends CaptchaType { * {@inheritdoc} */ public function configureOptions(OptionsResolver $resolver): void { + //Call parent configure options + parent::configureOptions($resolver); + //Set defaults $resolver->setDefaults(['error_bubbling' => true]); }