aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2015-08-20 07:53:55 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2015-08-20 07:53:55 +0200
commit8ce32af61229eec8f4cc34b207273d47f60adc48 (patch)
tree4d878e6d4eb5c1baab95cd02e3eb95ee4182a399 /src/Wallabag/CoreBundle/Form
parent34437f408c5b7b590aded6795d7ce01bfbfc7711 (diff)
downloadwallabag-8ce32af61229eec8f4cc34b207273d47f60adc48.tar.gz
wallabag-8ce32af61229eec8f4cc34b207273d47f60adc48.tar.zst
wallabag-8ce32af61229eec8f4cc34b207273d47f60adc48.zip
CS
We shouldn't forget to run `php-cs-fixer` time to time
Diffstat (limited to 'src/Wallabag/CoreBundle/Form')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php2
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/ResetPasswordType.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php b/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php
index b4224e3d..82e1954d 100644
--- a/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/ChangePasswordType.php
@@ -19,7 +19,7 @@ class ChangePasswordType extends AbstractType
19 'type' => 'password', 19 'type' => 'password',
20 'invalid_message' => 'The password fields must match.', 20 'invalid_message' => 'The password fields must match.',
21 'required' => true, 21 'required' => true,
22 'first_options' => array('label' => 'New password'), 22 'first_options' => array('label' => 'New password'),
23 'second_options' => array('label' => 'Repeat new password'), 23 'second_options' => array('label' => 'Repeat new password'),
24 'constraints' => array( 24 'constraints' => array(
25 new Constraints\Length(array( 25 new Constraints\Length(array(
diff --git a/src/Wallabag/CoreBundle/Form/Type/ResetPasswordType.php b/src/Wallabag/CoreBundle/Form/Type/ResetPasswordType.php
index a5d683c4..38f1a105 100644
--- a/src/Wallabag/CoreBundle/Form/Type/ResetPasswordType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/ResetPasswordType.php
@@ -15,7 +15,7 @@ class ResetPasswordType extends AbstractType
15 'type' => 'password', 15 'type' => 'password',
16 'invalid_message' => 'The password fields must match.', 16 'invalid_message' => 'The password fields must match.',
17 'required' => true, 17 'required' => true,
18 'first_options' => array('label' => 'New password'), 18 'first_options' => array('label' => 'New password'),
19 'second_options' => array('label' => 'Repeat new password'), 19 'second_options' => array('label' => 'Repeat new password'),
20 'constraints' => array( 20 'constraints' => array(
21 new Constraints\Length(array( 21 new Constraints\Length(array(