Completed
Push — master ( b0b47a...abbd86 )
by Arman
15s queued 11s
created
src/Libraries/Auth/WebAuth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
 
148 148
             session()->set($this->authUserKey, $this->filterFields($user));
149 149
             return true;
150
-        } else  {
150
+        } else {
151 151
 
152 152
             return false;
153 153
         }
Please login to merge, or discard this patch.
src/Libraries/Auth/BaseAuth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function checkVerification()
46 46
     {
47
-        if (isset($this->user()->verification_code) && !empty($this->user()->verification_code)){
47
+        if (isset($this->user()->verification_code) && !empty($this->user()->verification_code)) {
48 48
             return true;
49 49
         }
50 50
         return false;
Please login to merge, or discard this patch.
src/Libraries/Auth/ApiAuth.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
 
92 92
         if (config()->get('two_step_verification')) {
93 93
 
94
-           $user = $this->towStepVerification($mailer, $user);
94
+            $user = $this->towStepVerification($mailer, $user);
95 95
         }
96 96
 
97 97
         $tokens = $this->setUpdatedTokens($user);
Please login to merge, or discard this patch.