Completed
Push — master ( a1a6a4...7c09a0 )
by
unknown
09:54 queued 07:29
created
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.
Security/FormAuthenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
 
87 87
     public function supports(Request $request)
88 88
     {
89
-        return preg_match('/\/\w{2}\/login/', $request->getRequestUri()) !== false  && $request->isMethod('POST');
89
+        return preg_match('/\/\w{2}\/login/', $request->getRequestUri()) !== false && $request->isMethod('POST');
90 90
     }
91 91
 
92 92
     protected function getLoginUrl(): string
Please login to merge, or discard this patch.