aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Form/Type')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/UserInformationType.php (renamed from src/Wallabag/CoreBundle/Form/Type/UserType.php)5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/UserType.php b/src/Wallabag/CoreBundle/Form/Type/UserInformationType.php
index b479a0b5..617722db 100644
--- a/src/Wallabag/CoreBundle/Form/Type/UserType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/UserInformationType.php
@@ -5,12 +5,11 @@ use Symfony\Component\Form\AbstractType;
5use Symfony\Component\Form\FormBuilderInterface; 5use Symfony\Component\Form\FormBuilderInterface;
6use Symfony\Component\OptionsResolver\OptionsResolverInterface; 6use Symfony\Component\OptionsResolver\OptionsResolverInterface;
7 7
8class UserType extends AbstractType 8class UserInformationType extends AbstractType
9{ 9{
10 public function buildForm(FormBuilderInterface $builder, array $options) 10 public function buildForm(FormBuilderInterface $builder, array $options)
11 { 11 {
12 $builder 12 $builder
13 ->add('username', 'text')
14 ->add('name', 'text') 13 ->add('name', 'text')
15 ->add('email', 'text') 14 ->add('email', 'text')
16 ->add('save', 'submit') 15 ->add('save', 'submit')
@@ -26,6 +25,6 @@ class UserType extends AbstractType
26 25
27 public function getName() 26 public function getName()
28 { 27 {
29 return 'user'; 28 return 'update_user';
30 } 29 }
31} 30}