Completed
Push — master ( da680b...0969a6 )
by
unknown
13s
created
Controller/LoginController.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@
 block discarded – undo
64 64
         );
65 65
     }
66 66
 
67
+    /**
68
+     * @param AuthenticationException $exception
69
+     */
67 70
     private function getTranslatedErrorMessageFromAuthenticationException(
68 71
         ?AuthenticationException $exception = null
69 72
     ): ?string {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
 
67 67
     private function getTranslatedErrorMessageFromAuthenticationException(
68 68
         ?AuthenticationException $exception = null
69
-    ): ?string {
69
+    ) : ?string {
70 70
         if ($exception === null) {
71 71
             return null;
72 72
         }
Please login to merge, or discard this patch.
Controller/UserController.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -108,6 +108,9 @@
 block discarded – undo
108 108
         return ['form' => $form->createView()];
109 109
     }
110 110
 
111
+    /**
112
+     * @param integer $id
113
+     */
111 114
     private function getFormForId(?int $id = null): Form
112 115
     {
113 116
         if ($id === null) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         return ['form' => $form->createView()];
109 109
     }
110 110
 
111
-    private function getFormForId(?int $id = null): Form
111
+    private function getFormForId(?int $id = null) : Form
112 112
     {
113 113
         if ($id === null) {
114 114
             return $this->formFactory->create($this->form);
Please login to merge, or discard this patch.
Exception/UserNotFound.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@
 block discarded – undo
9 9
 {
10 10
     public static function withUsername(string $username): self
11 11
     {
12
-        return new self('No user found with username "' . $username . '".');
12
+        return new self('No user found with username "'.$username.'".');
13 13
     }
14 14
 
15 15
     public static function withToken(PasswordResetToken $token): self
16 16
     {
17
-        return new self('No user found with password reset token "' . $token->getToken() . '".');
17
+        return new self('No user found with password reset token "'.$token->getToken().'".');
18 18
     }
19 19
 }
Please login to merge, or discard this patch.