]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Form/RegisterType.php
Add about template
[airbundle] / Form / RegisterType.php
index f7cda544987676134eb271abcd3476c795a2ecf2..d34fc0a4d3bd3afd4903a5726119a626c2b946a4 100644 (file)
@@ -3,6 +3,7 @@
 namespace Rapsys\AirBundle\Form;
 
 use Symfony\Component\Form\Extension\Core\Type\TelType;
+use Symfony\Component\Form\Extension\Core\Type\UrlType;
 use Symfony\Component\Form\FormBuilderInterface;
 use Symfony\Component\Validator\Constraints\NotBlank;
 
@@ -12,7 +13,7 @@ class RegisterType extends \Rapsys\UserBundle\Form\RegisterType {
         */
        public function buildForm(FormBuilderInterface $builder, array $options) {
                return parent::buildForm($builder, $options)
-                       ->add('phone', TelType::class, array('attr' => array('placeholder' => 'Your phone'), 'constraints' => array(new NotBlank(array('message' => 'Please provide your phone')))));
+                       ->add('phone', TelType::class, ['attr' => ['placeholder' => 'Your phone'], 'required' => false]);
        }
 
        /**