Test Failed
Push — dev5 ( 054b32...4c0df5 )
by Ron
12:54
created
app/Http/Middleware/CheckBrowser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     public function handle($request, Closure $next)
17 17
     {
18 18
         //  Check for Internet Explorer 11
19
-        if (preg_match("/Trident\/7.0;(.*)rv:11.0/", $_SERVER["HTTP_USER_AGENT"], $match) != 0)
19
+        if(preg_match("/Trident\/7.0;(.*)rv:11.0/", $_SERVER["HTTP_USER_AGENT"], $match) != 0)
20 20
         {
21 21
             return response()->make(view('error.426'), 426);
22 22
         }
Please login to merge, or discard this patch.
app/Http/Controllers/DashboardController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,12 +34,12 @@
 block discarded – undo
34 34
         $totalLinks  = FileLinks::where('user_id', Auth::user()->user_id)->count();
35 35
 
36 36
         return view('dashboard', [
37
-           'custFavs'    => $custFavs,
38
-           'tipFavs'     => $tipFavs,
39
-           'tips30'      => $tips30Days,
40
-           'tipsAll'     => $tipsTotal,
41
-           'activeLinks' => $activeLinks,
42
-           'totalLinks'  => $totalLinks,
37
+            'custFavs'    => $custFavs,
38
+            'tipFavs'     => $tipFavs,
39
+            'tips30'      => $tips30Days,
40
+            'tipsAll'     => $tipsTotal,
41
+            'activeLinks' => $activeLinks,
42
+            'totalLinks'  => $totalLinks,
43 43
         ]);
44 44
     }
45 45
 
Please login to merge, or discard this patch.