diff --git a/src/Controller/RestMailLoginController.php b/src/Controller/RestMailLoginController.php
index 753209b..c100bee 100644
--- a/src/Controller/RestMailLoginController.php
+++ b/src/Controller/RestMailLoginController.php
@@ -125,9 +125,7 @@ class RestMailLoginController extends ControllerBase implements ContainerInjecti
     $this->logger = $logger;
   }
 
-
-
-   /**
+  /**
    * {@inheritdoc}
    */
   public static function create(ContainerInterface $container) {
@@ -184,7 +182,7 @@ class RestMailLoginController extends ControllerBase implements ContainerInjecti
       throw new BadRequestHttpException('The user has not been activated or is blocked.');
     }
     $user = user_load_by_mail($credentials['mail']);
-    if($user == FALSE){
+    if ($user == FALSE) {
       throw new BadRequestHttpException('Sorry, unrecognized username or password.');
     }
     if ($uid = $this->userAuth->authenticate($user->name->value, $credentials['pass'])) {
@@ -410,4 +408,3 @@ class RestMailLoginController extends ControllerBase implements ContainerInjecti
   }
 
 }
-
