Completed
Pull Request — dev (#50)
by
unknown
03:54
created
src/AppBundle/Controller/FormRequestController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,13 +93,13 @@
 block discarded – undo
93 93
         $formRequest->setStatus($status);
94 94
         $em->flush();
95 95
 
96
-         $this->get('app.email_notification')->sendNotification(
96
+            $this->get('app.email_notification')->sendNotification(
97 97
                 $formRequest->getUser()->getEmail(),
98 98
                 'Form request action',
99 99
                 'Hello, '.$formRequest->getUser()->getFirstName().'.
100 100
                 Your form request was '.$formRequest->getStatus().'.'
101
-         );
101
+            );
102 102
 
103
-         return new Response($status);
103
+            return new Response($status);
104 104
     }
105 105
 }
Please login to merge, or discard this patch.