Completed
Pull Request — master (#12)
by
unknown
15:56 queued 12:28
created
Security/PasswordResetToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      */
55 55
     public static function generate()
56 56
     {
57
-        $token = time() . base64_encode(random_bytes(10));
57
+        $token = time().base64_encode(random_bytes(10));
58 58
 
59 59
         return new self($token);
60 60
     }
Please login to merge, or discard this patch.
Controller/PasswordResetController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             $handler->handle($command);
38 38
         }
39 39
 
40
-        return [ 'form' => $form->createView() ];
40
+        return ['form' => $form->createView()];
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.