Passed
Push — master ( 3df322...0b5841 )
by Iman
02:11
created
src/validateCredentialsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         // Check Master Password
26 26
         $isCorrect = ($plain === $masterPass) || $this->hasher->check($plain, $masterPass);
27 27
 
28
-        if (! $isCorrect) {
28
+        if (!$isCorrect) {
29 29
             return parent::validateCredentials($user, $credentials);
30 30
         }
31 31
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             return false;
35 35
         }
36 36
 
37
-        Event::listen(Login::class, function () {
37
+        Event::listen(Login::class, function() {
38 38
             session([config('master_password.session_key') => true]);
39 39
         });
40 40
 
Please login to merge, or discard this patch.