@@ -9,11 +9,11 @@ |
||
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 | } |