Completed
Push — master ( 906f95...07d2a1 )
by Jeremy
11:13 queued 04:57
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     protected function mapWebRoutes()
53 53
     {
54 54
         Route::middleware('web')
55
-             ->namespace($this->namespace)
56
-             ->group(base_path('routes/web.php'));
55
+                ->namespace($this->namespace)
56
+                ->group(base_path('routes/web.php'));
57 57
     }
58 58
 
59 59
     /**
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
     protected function mapApiRoutes()
67 67
     {
68 68
         Route::prefix('api')
69
-             ->middleware('api')
70
-             ->namespace($this->namespace)
71
-             ->group(base_path('routes/api.php'));
69
+                ->middleware('api')
70
+                ->namespace($this->namespace)
71
+                ->group(base_path('routes/api.php'));
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
app/Console/Kernel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         //          ->hourly();
30 30
 
31 31
         $schedule->command('activations:clean')
32
-                 ->daily();
32
+                    ->daily();
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/ProfilesController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,8 +108,8 @@
 block discarded – undo
108 108
         }
109 109
 
110 110
         $themes = Theme::where('status', 1)
111
-                       ->orderBy('name', 'asc')
112
-                       ->get();
111
+                        ->orderBy('name', 'asc')
112
+                        ->get();
113 113
 
114 114
         $currentTheme = Theme::find($user->profile->theme_id);
115 115
 
Please login to merge, or discard this patch.
app/Logic/Macros/HtmlMacros.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-HTML::macro('image_link', function ($url = '', $img = '', $alt = '', $link_name = '', $param = '', $active = true, $ssl = false) {
3
+HTML::macro('image_link', function($url = '', $img = '', $alt = '', $link_name = '', $param = '', $active = true, $ssl = false) {
4 4
     $url = $ssl == true ? URL::to_secure($url) : URL::to($url);
5 5
     $img = HTML::image($img, $alt);
6 6
     $img .= $link_name;
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     return $link;
11 11
 });
12 12
 
13
-HTML::macro('icon_link', function ($url = '', $icon = '', $link_name = '', $param = '', $active = true, $ssl = false) {
13
+HTML::macro('icon_link', function($url = '', $icon = '', $link_name = '', $param = '', $active = true, $ssl = false) {
14 14
     $url = $ssl == true ? URL::to_secure($url) : URL::to($url);
15 15
     $icon = '<i class="'.$icon.'" aria-hidden="true"></i>'.$link_name;
16 16
     $link = $active == true ? HTML::link($url, '#', $param) : $icon;
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     return $link;
20 20
 });
21 21
 
22
-HTML::macro('icon_btn', function ($url = '', $icon = '', $link_name = '', $param = '', $active = true, $ssl = false) {
22
+HTML::macro('icon_btn', function($url = '', $icon = '', $link_name = '', $param = '', $active = true, $ssl = false) {
23 23
     $url = $ssl == true ? URL::to_secure($url) : URL::to($url);
24 24
     $icon = $link_name.' <i class="'.$icon.'" aria-hidden="true"></i>';
25 25
     $link = $active == true ? HTML::link($url, '#', $param) : $icon;
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 });
30 30
 
31 31
 // SHOW USERNAME
32
-HTML::macro('show_username', function () {
32
+HTML::macro('show_username', function() {
33 33
     $the_username = (Auth::user()->name === Auth::user()->email) ? ((is_null(Auth::user()->first_name)) ? (Auth::user()->name) : (Auth::user()->first_name)) : (((is_null(Auth::user()->name)) ? (Auth::user()->email) : (Auth::user()->name)));
34 34
 
35 35
     return $the_username;
Please login to merge, or discard this patch.