Passed
Push — feature/add-2fa-support ( dce790...5e424a )
by Tristan
12:13
created
app/Models/Criteria.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
  * @property string $level_description The localized description of the skill level (accounts for skill type).
29 29
  *
30 30
  *  Localized Properties:
31
-  * @property string $description
32
-  * @property string $specificity
31
+ * @property string $description
32
+ * @property string $specificity
33 33
  */
34 34
 class Criteria extends BaseModel
35 35
 {
Please login to merge, or discard this patch.
app/Http/Middleware/Google2FA.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@
 block discarded – undo
23 23
             $remember = $request->cookie($user->getRememberDeviceKey());
24 24
             // If tokens do not match, cookie is no longer valid.
25 25
             if ($remember !== null && $remember !== $user->getRememberDeviceToken()) {
26
-                 Cookie::queue(
27
-                     Cookie::forget($user->getRememberDeviceKey())
28
-                 );
26
+                    Cookie::queue(
27
+                        Cookie::forget($user->getRememberDeviceKey())
28
+                    );
29 29
             }
30 30
 
31 31
             if ($authenticator->isAuthenticated() || ($remember !== null && $remember === $user->getRememberDeviceToken())) {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/TwoFactorController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             $user->email,
21 21
             $secret
22 22
         );
23
-         $profile_url = '';
23
+            $profile_url = '';
24 24
         if (WhichPortal::isApplicantPortal()) {
25 25
             $profile_url = route('settings.edit');
26 26
         } elseif (WhichPortal::isManagerPortal()) {
Please login to merge, or discard this patch.