Passed
Push — master ( 4b767b...1a65fd )
by Luiz Kim
09:04
created
src/Controller/CreateUserAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
   {
23 23
 
24 24
     try {
25
-      $payload   = json_decode($request->getContent());
25
+      $payload = json_decode($request->getContent());
26 26
       return new JsonResponse($this->hydratorService->result(
27 27
         $this->service->createUser(
28 28
           $payload->people,
Please login to merge, or discard this patch.
src/Controller/ChangePasswordAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
   {
24 24
 
25 25
     try {
26
-      $payload   = json_decode($request->getContent());
26
+      $payload = json_decode($request->getContent());
27 27
       return new JsonResponse($this->hydratorService->result($this->service->changePassword($data, $payload->password)));
28 28
     } catch (\Exception $e) {
29 29
 
Please login to merge, or discard this patch.