Passed
Push — master ( d23f99...fe954a )
by Mike
02:29
created
src/Xervice/User/UserQueryContainer.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
     public function getUserQueryFromUserId(int $userId)
57 57
     {
58 58
         return $this->getUserQuery()
59
-                          ->filterByUserId($userId)
60
-                          ->joinWith('User.UserLogin')
61
-                          ->joinWith('UserLogin.UserCredential');
59
+                            ->filterByUserId($userId)
60
+                            ->joinWith('User.UserLogin')
61
+                            ->joinWith('UserLogin.UserCredential');
62 62
     }
63 63
 
64 64
     /**
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
     public function getUserQueryFromEmail(string $email)
70 70
     {
71 71
         return $this->getUserQuery()
72
-                          ->filterByEmail($email)
73
-                          ->joinWith('User.UserLogin')
74
-                          ->joinWith('UserLogin.UserCredential');
72
+                            ->filterByEmail($email)
73
+                            ->joinWith('User.UserLogin')
74
+                            ->joinWith('UserLogin.UserCredential');
75 75
     }
76 76
 
77 77
     /**
Please login to merge, or discard this patch.