Passed
Branch master (d3b867)
by Iman
11:48
created
src/PassportUserRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,13 +40,13 @@
 block discarded – undo
40 40
             }
41 41
         }
42 42
 
43
-        if (! $user) {
43
+        if (!$user) {
44 44
             return;
45 45
         } elseif (method_exists($user, 'validateForPassportPasswordGrant')) {
46
-            if (! $user->validateForPassportPasswordGrant($password)) {
46
+            if (!$user->validateForPassportPasswordGrant($password)) {
47 47
                 return;
48 48
             }
49
-        } elseif (! $this->hasher->check($password, $user->getAuthPassword())) {
49
+        } elseif (!$this->hasher->check($password, $user->getAuthPassword())) {
50 50
             return;
51 51
         }
52 52
 
Please login to merge, or discard this patch.