Completed
Pull Request — master (#52)
by Ron
05:19
created
app/Mail/NewLinkFile.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,4 +36,4 @@
 block discarded – undo
36 36
         return $this->subject('New File Uploaded')->markdown('email.newLinkFile');
37 37
     }
38 38
 }
39
- 
40 39
\ No newline at end of file
40
+    
41 41
\ No newline at end of file
Please login to merge, or discard this patch.
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/Http/Controllers/CustomerController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
                 ->with('CustomerSystems.SystemTypes')
53 53
                 ->whereHas('CustomerSystems', function($q) use($request)
54 54
                 {
55
-                   $q->where('sys_id', $request->system);
55
+                    $q->where('sys_id', $request->system);
56 56
                 })
57 57
                 ->get();
58 58
         }
Please login to merge, or discard this patch.
app/Http/Controllers/TechTipsController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
             $tipData = TechTips::where('subject', 'like', '%'.$request->tipSearch.'%')
58 58
                 ->whereHas('TechTipSystems', function($q) use($request)
59 59
                 {
60
-                   $q->where('sys_id', $request->system);
60
+                    $q->where('sys_id', $request->system);
61 61
                 })
62 62
                 ->get();
63 63
         }
Please login to merge, or discard this patch.
app/Http/Controllers/UserLinksController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,4 +100,4 @@
 block discarded – undo
100 100
         return $request->all();
101 101
     }
102 102
 }
103
- 
104 103
\ No newline at end of file
104
+    
105 105
\ No newline at end of file
Please login to merge, or discard this patch.
app/Http/Controllers/UserController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         
147 147
         $nextChange = config('users.passExpires') != null ? Carbon::now()->addDays(config('users.passExpires')) : null;
148 148
         
149
-         //  Update the password
149
+            //  Update the password
150 150
         User::find($userData->user_id)->update(
151 151
         [
152 152
             'password'         => bcrypt($request->newPass),
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
         
188 188
         $nextChange = isset($request->force_change) && $request->force_change == 'on' ? Carbon::now()->subDay() : null;
189 189
         
190
-         //  Update the user data
190
+            //  Update the user data
191 191
         User::find($id)->update(
192 192
         [
193 193
             'password'         => bcrypt($request->password),
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
     //  Deactivae an active user
261 261
     public function destroy($id)
262 262
     {
263
-         //  Update the user data
263
+            //  Update the user data
264 264
         User::find($id)->update(
265 265
         [
266 266
             'active'   => 0
Please login to merge, or discard this patch.