Completed
Push — master ( 9078e8...7440bd )
by Gabriel
02:37
created
src/User/UserEntityTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@
 block discarded – undo
233 233
     protected function hashPassword(): UserEntityInterface
234 234
     {
235 235
         $this->password = password_hash(
236
-            (string) $this->password,
236
+            (string)$this->password,
237 237
             PASSWORD_DEFAULT
238 238
         );
239 239
         return $this;
Please login to merge, or discard this patch.
src/Authentication/AuthenticationController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
                 throw new AuthenticationException(
96 96
                     $this->getDictionary()
97 97
                         ->get('user.authentication.error.email_not_confirmed')
98
-                    . '<br><a href="#" data-action="resend-confirmation-email">' . $this->getDictionary()
98
+                    . '<br><a href="#" data-action="resend-confirmation-email">'.$this->getDictionary()
99 99
                         ->get('user.authentication.error.resend_confirmation_email')
100 100
                     . '</a>'
101 101
                 );
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
                 throw new AuthenticationException(
135 135
                     $this->getDictionary()
136 136
                         ->get('user.authentication.error.email_not_confirmed')
137
-                    . '<br><a href="#" data-action="resend-confirmation-email">' . $this->getDictionary()
137
+                    . '<br><a href="#" data-action="resend-confirmation-email">'.$this->getDictionary()
138 138
                         ->get('user.authentication.error.resend_confirmation_email')
139 139
                     . '</a>'
140 140
                 );
Please login to merge, or discard this patch.