Completed
Push — master ( c7ec68...dd7588 )
by
unknown
44s
created
Console/CreateUserCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,6 +61,6 @@
 block discarded – undo
61 61
 
62 62
         $this->handler->handle($userTransferObject);
63 63
 
64
-        $output->writeln($userTransferObject->userName . ' has been created');
64
+        $output->writeln($userTransferObject->userName.' has been created');
65 65
     }
66 66
 }
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
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      */
15 15
     public static function withUsername($username)
16 16
     {
17
-        return new self('No user found with username "' . $username . '".');
17
+        return new self('No user found with username "'.$username.'".');
18 18
     }
19 19
 
20 20
     /**
@@ -24,6 +24,6 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public static function withToken(PasswordResetToken $token)
26 26
     {
27
-        return new self('No user found with password reset token "' . $token->getToken() . '".');
27
+        return new self('No user found with password reset token "'.$token->getToken().'".');
28 28
     }
29 29
 }
Please login to merge, or discard this patch.