Passed
Push — feature/add-2fa-support ( 330d32...373a46 )
by Tristan
08:00
created
app/Http/ViewComposers/MenuComposer.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -209,13 +209,13 @@
 block discarded – undo
209 209
                 'settings_link' => route('manager.settings.edit'),
210 210
             ];
211 211
         } elseif (WhichPortal::isAdminPortal()) {
212
-             $loginModals = [
212
+                $loginModals = [
213 213
                 'modals' => Lang::get('common/login_modals'),
214 214
                 'register_link' => route('register'),
215 215
                 'login_link' => backpack_url('login'),
216 216
                 'logout_link' => backpack_url('logout'),
217 217
                 'settings_link' => route('settings.edit'),
218
-             ];
218
+                ];
219 219
         } else {
220 220
             $loginModals = [
221 221
                 'modals' => Lang::get('common/login_modals'),
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.