Completed
Pull Request — dev (#22)
by
unknown
03:40
created
src/AppBundle/Controller/UserController.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,9 +98,10 @@
 block discarded – undo
98 98
             'validation_groups' => array('registration'),
99 99
         ]);
100 100
         $form->handleRequest($request);
101
-        if ($form->isSubmitted())
102
-            if ($form->isValid()) {
101
+        if ($form->isSubmitted()) {
102
+                    if ($form->isValid()) {
103 103
                 $em->persist($user);
104
+        }
104 105
                 $em->flush();
105 106
 
106 107
                 return $this->redirect($this->generateUrl("users_list"));
Please login to merge, or discard this patch.