Passed
Push — dev5 ( 671e66...a3bb6d )
by Ron
06:57
created
database/factories/NotificationsFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 // use App\Model;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(Illuminate\Notifications\DatabaseNotification::class, function (Faker $faker) {
8
+$factory->define(Illuminate\Notifications\DatabaseNotification::class, function(Faker $faker) {
9 9
     return [
10 10
         //
11 11
         'id' => $faker->uuid,
Please login to merge, or discard this patch.
database/migrations/2019_11_29_232604_create_failed_jobs_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('failed_jobs', function (Blueprint $table) {
16
+        Schema::create('failed_jobs', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->text('connection');
19 19
             $table->text('queue');
Please login to merge, or discard this patch.
app/Http/Controllers/TechTips/TechTipsController.php 2 patches
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         Log::debug('request Data -> ', $request->toArray());
52 52
 
53 53
         //  See if there are any search paramaters entered
54
-        if (!$request->search['searchText'] && !isset($request->search['articleType']) && !isset($request->search['systemType'])) {
54
+        if(!$request->search['searchText'] && !isset($request->search['articleType']) && !isset($request->search['systemType'])) {
55 55
             //  No search paramaters, send all tech tips
56 56
             $tips = new TechTipsCollection(
57 57
                 TechTips::orderBy('created_at', 'DESC')
@@ -60,21 +60,21 @@  discard block
 block discarded – undo
60 60
             );
61 61
         } else {
62 62
             $article = isset($request->search['articleType']) ? true : false;
63
-            $system  = isset($request->search['systemType'])  ? true : false;
63
+            $system  = isset($request->search['systemType']) ? true : false;
64 64
             //  Search paramaters, filter results
65 65
             $tips = new TechTipsCollection(
66 66
                 TechTips::orderBy('created_at', 'DESC')
67 67
                     //  Search by id or a phrase in the title or description
68
-                    ->where(function ($query) use ($request) {
69
-                        $query->where('subject', 'like', '%' . $request->search['searchText'] . '%')
70
-                            ->orWhere('tip_id', 'like', '%' . $request->search['searchText'] . '%')
71
-                            ->orWhere('description', 'like', '%' . $request->search['searchText'] . '%');
68
+                    ->where(function($query) use ($request) {
69
+                        $query->where('subject', 'like', '%'.$request->search['searchText'].'%')
70
+                            ->orWhere('tip_id', 'like', '%'.$request->search['searchText'].'%')
71
+                            ->orWhere('description', 'like', '%'.$request->search['searchText'].'%');
72 72
                     })
73
-                    ->when($article, function ($query) use ($request) {
73
+                    ->when($article, function($query) use ($request) {
74 74
                         $query->whereIn('tip_type_id', $request->search['articleType']);
75 75
                     })
76
-                    ->when($system, function ($query) use ($request) {
77
-                        $query->whereHas('SystemTypes', function ($query) use ($request) {
76
+                    ->when($system, function($query) use ($request) {
77
+                        $query->whereHas('SystemTypes', function($query) use ($request) {
78 78
                             $query->whereIn('system_types.sys_id', $request->search['systemType']);
79 79
                         });
80 80
                     })
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         $save = $receiver->receive();
147 147
 
148 148
         //  See if the uploade has finished
149
-        if ($save->isFinished()) {
149
+        if($save->isFinished()) {
150 150
             $this->saveFile($save->getFile());
151 151
 
152 152
             return 'uploaded successfully';
@@ -155,8 +155,8 @@  discard block
 block discarded – undo
155 155
         //  Get the current progress
156 156
         $handler = $save->handler();
157 157
 
158
-        Log::debug('Route ' . Route::currentRouteName() . ' visited by User ID-' . Auth::user()->user_id);
159
-        Log::debug('File being uploaded.  Percentage done - ' . $handler->getPercentageDone());
158
+        Log::debug('Route '.Route::currentRouteName().' visited by User ID-'.Auth::user()->user_id);
159
+        Log::debug('File being uploaded.  Percentage done - '.$handler->getPercentageDone());
160 160
         return response()->json([
161 161
             'done'   => $handler->getPercentageDone(),
162 162
             'status' => true
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
         }
196 196
 
197 197
         //  Log stored file
198
-        Log::info('File Stored', ['file_id' => $fileID, 'file_path' => $filePath . DIRECTORY_SEPARATOR . $fileName]);
198
+        Log::info('File Stored', ['file_id' => $fileID, 'file_path' => $filePath.DIRECTORY_SEPARATOR.$fileName]);
199 199
         return $fileID;
200 200
     }
201 201
 
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
     //  Details controller - will move to the show controller with just the tech tip id
264 264
     public function details($id, $subject)
265 265
     {
266
-        if (session()->has('newTipFile')) {
266
+        if(session()->has('newTipFile')) {
267 267
             session()->forget('newTipFile');
268 268
         }
269 269
 
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     //  Add or remove this tip as a favorite of the user
294 294
     public function toggleFav($action, $id)
295 295
     {
296
-        switch ($action) {
296
+        switch($action) {
297 297
             case 'add':
298 298
                 TechTipFavs::create([
299 299
                     'user_id' => Auth::user()->user_id,
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
                 break;
307 307
         }
308 308
 
309
-        Log::debug('Route ' . Route::currentRouteName() . ' visited by User ID-' . Auth::user()->user_id);
309
+        Log::debug('Route '.Route::currentRouteName().' visited by User ID-'.Auth::user()->user_id);
310 310
         Log::debug('Tech Tip Bookmark Updated.', [
311 311
             'user_id' => Auth::user()->user_id,
312 312
             'tip_id' => $id,
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
         $this->authorize('hasAccess', 'Edit Tech Tip');
322 322
         $tipData = TechTips::where('tip_id', $id)->with('User')->with('SystemTypes')->with('TechTipTypes')->first();
323 323
 
324
-        if (!$tipData) {
324
+        if(!$tipData) {
325 325
             return view('tips.tipNotFound');
326 326
         }
327 327
 
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
         $systemsArr = new SystemCategoriesCollection(SystemCategories::with('SystemTypes')->get());
330 330
         $files = TechTipFiles::where('tip_id', $id)->with('Files')->get();
331 331
 
332
-        Log::debug('Route ' . Route::currentRouteName() . ' visited by User ID-' . Auth::user()->user_id);
332
+        Log::debug('Route '.Route::currentRouteName().' visited by User ID-'.Auth::user()->user_id);
333 333
         return view('tips.editTip', [
334 334
             'tipTypes' => $typesArr,
335 335
             'sysTypes' => $systemsArr,
@@ -353,9 +353,9 @@  discard block
 block discarded – undo
353 353
         $receiver = new FileReceiver('file', $request, HandlerFactory::classFromRequest($request));
354 354
 
355 355
         //  Verify if there is a file to be processed or not
356
-        if ($receiver->isUploaded() === false || $request->_completed) {
356
+        if($receiver->isUploaded() === false || $request->_completed) {
357 357
             $this->storeUpdatedTip($request, $id);
358
-            Log::debug('Route ' . Route::currentRouteName() . ' visited by User ID-' . Auth::user()->user_id);
358
+            Log::debug('Route '.Route::currentRouteName().' visited by User ID-'.Auth::user()->user_id);
359 359
             return response()->json(['tip_id' => $id]);
360 360
         }
361 361
 
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
         $save = $receiver->receive();
364 364
 
365 365
         //  See if the uploade has finished
366
-        if ($save->isFinished()) {
366
+        if($save->isFinished()) {
367 367
             $this->saveFile($save->getFile(), $id);
368 368
 
369 369
             return 'uploaded successfully';
@@ -372,8 +372,8 @@  discard block
 block discarded – undo
372 372
         //  Get the current progress
373 373
         $handler = $save->handler();
374 374
 
375
-        Log::debug('Route ' . Route::currentRouteName() . ' visited by User ID-' . Auth::user()->user_id);
376
-        Log::debug('File being uploaded.  Percentage done - ' . $handler->getPercentageDone());
375
+        Log::debug('Route '.Route::currentRouteName().' visited by User ID-'.Auth::user()->user_id);
376
+        Log::debug('File being uploaded.  Percentage done - '.$handler->getPercentageDone());
377 377
         return response()->json([
378 378
             'done'   => $handler->getPercentageDone(),
379 379
             'status' => true
Please login to merge, or discard this patch.
Braces   +18 added lines, -10 removed lines patch added patch discarded remove patch
@@ -51,14 +51,17 @@  discard block
 block discarded – undo
51 51
         Log::debug('request Data -> ', $request->toArray());
52 52
 
53 53
         //  See if there are any search paramaters entered
54
-        if (!$request->search['searchText'] && !isset($request->search['articleType']) && !isset($request->search['systemType'])) {
54
+        if (!$request->search['searchText'] && !isset($request->search['articleType']) && !isset($request->search['systemType']))
55
+        {
55 56
             //  No search paramaters, send all tech tips
56 57
             $tips = new TechTipsCollection(
57 58
                 TechTips::orderBy('created_at', 'DESC')
58 59
                     ->with('SystemTypes')
59 60
                     ->paginate($request->pagination['perPage'])
60 61
             );
61
-        } else {
62
+        }
63
+        else
64
+        {
62 65
             $article = isset($request->search['articleType']) ? true : false;
63 66
             $system  = isset($request->search['systemType'])  ? true : false;
64 67
             //  Search paramaters, filter results
@@ -146,7 +149,8 @@  discard block
 block discarded – undo
146 149
         $save = $receiver->receive();
147 150
 
148 151
         //  See if the uploade has finished
149
-        if ($save->isFinished()) {
152
+        if ($save->isFinished())
153
+        {
150 154
             $this->saveFile($save->getFile());
151 155
 
152 156
             return 'uploaded successfully';
@@ -248,8 +252,7 @@  discard block
 block discarded – undo
248 252
         if(!$tipData->supressEmail)
249 253
         {
250 254
             $details = TechTips::find($tipID);
251
-            $users = User::whereHas('UserSettings', function($query)
252
-            {
255
+            $users = User::whereHas('UserSettings', function($query) {
253 256
                 $query->where('em_tech_tip', 1);
254 257
             })->get();
255 258
 
@@ -263,7 +266,8 @@  discard block
 block discarded – undo
263 266
     //  Details controller - will move to the show controller with just the tech tip id
264 267
     public function details($id, $subject)
265 268
     {
266
-        if (session()->has('newTipFile')) {
269
+        if (session()->has('newTipFile'))
270
+        {
267 271
             session()->forget('newTipFile');
268 272
         }
269 273
 
@@ -293,7 +297,8 @@  discard block
 block discarded – undo
293 297
     //  Add or remove this tip as a favorite of the user
294 298
     public function toggleFav($action, $id)
295 299
     {
296
-        switch ($action) {
300
+        switch ($action)
301
+        {
297 302
             case 'add':
298 303
                 TechTipFavs::create([
299 304
                     'user_id' => Auth::user()->user_id,
@@ -321,7 +326,8 @@  discard block
 block discarded – undo
321 326
         $this->authorize('hasAccess', 'Edit Tech Tip');
322 327
         $tipData = TechTips::where('tip_id', $id)->with('User')->with('SystemTypes')->with('TechTipTypes')->first();
323 328
 
324
-        if (!$tipData) {
329
+        if (!$tipData)
330
+        {
325 331
             return view('tips.tipNotFound');
326 332
         }
327 333
 
@@ -353,7 +359,8 @@  discard block
 block discarded – undo
353 359
         $receiver = new FileReceiver('file', $request, HandlerFactory::classFromRequest($request));
354 360
 
355 361
         //  Verify if there is a file to be processed or not
356
-        if ($receiver->isUploaded() === false || $request->_completed) {
362
+        if ($receiver->isUploaded() === false || $request->_completed)
363
+        {
357 364
             $this->storeUpdatedTip($request, $id);
358 365
             Log::debug('Route ' . Route::currentRouteName() . ' visited by User ID-' . Auth::user()->user_id);
359 366
             return response()->json(['tip_id' => $id]);
@@ -363,7 +370,8 @@  discard block
 block discarded – undo
363 370
         $save = $receiver->receive();
364 371
 
365 372
         //  See if the uploade has finished
366
-        if ($save->isFinished()) {
373
+        if ($save->isFinished())
374
+        {
367 375
             $this->saveFile($save->getFile(), $id);
368 376
 
369 377
             return 'uploaded successfully';
Please login to merge, or discard this patch.
database/factories/UserRoleTypeFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use App\UserRoleType;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(UserRoleType::class, function (Faker $faker) {
8
+$factory->define(UserRoleType::class, function(Faker $faker) {
9 9
     return [
10 10
         //
11 11
         'name'        => $faker->words(2, true),
Please login to merge, or discard this patch.
migrations/2019_11_30_195059_create_user_role_permissions_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function up()
16 16
     {
17
-        Schema::create('user_role_permissions', function (Blueprint $table) {
17
+        Schema::create('user_role_permissions', function(Blueprint $table) {
18 18
             $table->increments('id');
19 19
             $table->integer('role_id')->unsigned();
20 20
             $table->integer('perm_type_id')->unsigned();
Please login to merge, or discard this patch.
database/migrations/2019_11_30_195012_create_user_role_types_table.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      */
17 17
     public function up()
18 18
     {
19
-        Schema::create('user_role_types', function (Blueprint $table) {
19
+        Schema::create('user_role_types', function(Blueprint $table) {
20 20
             $table->increments('role_id');
21 21
             $table->text('name');
22 22
             $table->text('description');
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
 
27 27
         //  Insert default data
28 28
         DB::table('user_role_types')->insert([
29
-            ['role_id' => 1, 'name' => 'Installer',     'description' => 'All Access Administrator',    'allow_edit' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
30
-            ['role_id' => 2, 'name' => 'Administrator', 'description' => 'System Administrator',        'allow_edit' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
31
-            ['role_id' => 3, 'name' => 'Reports',       'description' => 'User who can run reports',    'allow_edit' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
32
-            ['role_id' => 4, 'name' => 'Tech',          'description' => 'Standard User',               'allow_edit' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
29
+            ['role_id' => 1, 'name' => 'Installer', 'description' => 'All Access Administrator', 'allow_edit' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
30
+            ['role_id' => 2, 'name' => 'Administrator', 'description' => 'System Administrator', 'allow_edit' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
31
+            ['role_id' => 3, 'name' => 'Reports', 'description' => 'User who can run reports', 'allow_edit' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
32
+            ['role_id' => 4, 'name' => 'Tech', 'description' => 'Standard User', 'allow_edit' => 0, 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
33 33
         ]);
34 34
 
35 35
         //  Update the users table to include the 'user_role' column
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@
 block discarded – undo
35 35
         //  Update the users table to include the 'user_role' column
36 36
         if(!Schema::hasColumn('users', 'role_id'))
37 37
         {
38
-            Schema::table('users', function(Blueprint $table)
39
-            {
38
+            Schema::table('users', function(Blueprint $table) {
40 39
                 $table->integer('role_id')->unsigned()->after('user_id')->default(4);
41 40
                 $table->foreign('role_id')->references('role_id')->on('user_role_types')->onUpdate('cascade');
42 41
             });
Please login to merge, or discard this patch.
migrations/2019_11_30_195040_create_user_role_permission_types_table.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      */
16 16
     public function up()
17 17
     {
18
-        Schema::create('user_role_permission_types', function (Blueprint $table) {
18
+        Schema::create('user_role_permission_types', function(Blueprint $table) {
19 19
             $table->increments('perm_type_id');
20 20
             $table->text('description');
21 21
             $table->timestamps();
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
 
24 24
         //  Insert default data
25 25
         DB::table('user_role_permission_types')->insert([
26
-            ['perm_type_id' => 1,  'description' => 'Manage Users',        'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
27
-            ['perm_type_id' => 2,  'description' => 'Manage User Roles',   'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
28
-            ['perm_type_id' => 3,  'description' => 'Run Reports',         'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
29
-            ['perm_type_id' => 4,  'description' => 'Add Customer',        'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
30
-            ['perm_type_id' => 5,  'description' => 'Manage Customers',    'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
31
-            ['perm_type_id' => 6,  'description' => 'Deactivate Customer', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
32
-            ['perm_type_id' => 7,  'description' => 'Use File Links',      'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
33
-            ['perm_type_id' => 8,  'description' => 'Create Tech Tip',     'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
34
-            ['perm_type_id' => 9,  'description' => 'Edit Tech Tip',       'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
35
-            ['perm_type_id' => 10, 'description' => 'Delete Tech Tip',     'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
36
-            ['perm_type_id' => 11, 'description' => 'Manage Equipment',    'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
26
+            ['perm_type_id' => 1, 'description' => 'Manage Users', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
27
+            ['perm_type_id' => 2, 'description' => 'Manage User Roles', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
28
+            ['perm_type_id' => 3, 'description' => 'Run Reports', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
29
+            ['perm_type_id' => 4, 'description' => 'Add Customer', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
30
+            ['perm_type_id' => 5, 'description' => 'Manage Customers', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
31
+            ['perm_type_id' => 6, 'description' => 'Deactivate Customer', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
32
+            ['perm_type_id' => 7, 'description' => 'Use File Links', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
33
+            ['perm_type_id' => 8, 'description' => 'Create Tech Tip', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
34
+            ['perm_type_id' => 9, 'description' => 'Edit Tech Tip', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
35
+            ['perm_type_id' => 10, 'description' => 'Delete Tech Tip', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
36
+            ['perm_type_id' => 11, 'description' => 'Manage Equipment', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now()],
37 37
         ]);
38 38
     }
39 39
 
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/UserController.php 2 patches
Braces   +16 added lines, -7 removed lines patch added patch discarded remove patch
@@ -181,12 +181,18 @@  discard block
 block discarded – undo
181 181
 
182 182
         //  Good to go - update user password
183 183
         $roleArr = [];
184
-        foreach ($roles as $role) {
185
-            if ($role->role_id == 1 && Auth::user()->role_id != 1) {
184
+        foreach ($roles as $role)
185
+        {
186
+            if ($role->role_id == 1 && Auth::user()->role_id != 1)
187
+            {
186 188
                 continue;
187
-            } else if ($role->role_id == 2 && Auth::user()->role_id > 1) {
189
+            }
190
+            else if ($role->role_id == 2 && Auth::user()->role_id > 1)
191
+            {
188 192
                 continue;
189
-            } else {
193
+            }
194
+            else
195
+            {
190 196
                 // $roleArr[$role->role_id] = $role->name;
191 197
                 $roleArr[] = [
192 198
                     'value' => $role->role_id,
@@ -275,17 +281,20 @@  discard block
 block discarded – undo
275 281
         $user = User::find($request->user_id);
276 282
 
277 283
         //  Verify this is a valid user ID
278
-        if (!$user) {
284
+        if (!$user)
285
+        {
279 286
             $success = false;
280 287
             $reason  = 'Cannot find user with this ID';
281 288
         }
282 289
         //  Make sure that the user is not trying to deactivate someone with more permissions
283
-        else if ($user->role_id < Auth::user()->role_id) {
290
+        else if ($user->role_id < Auth::user()->role_id)
291
+        {
284 292
             $success = false;
285 293
             $reason  = 'You cannot change password for a user with higher permissions that you.  If this user has locked themselves out, have then use the reset link on the login page.';
286 294
         }
287 295
         //  Good to go - update user password
288
-        else {
296
+        else
297
+        {
289 298
             //  Update the user data
290 299
             $user->update(
291 300
             [
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function __construct()
30 30
     {
31 31
         $this->middleware('auth')->except('initializeUser', 'submitInitializeUser');
32
-        $this->middleware(function ($request, $next) {
32
+        $this->middleware(function($request, $next) {
33 33
             $this->authorize('hasAccess', 'Manage Users');
34 34
             return $next($request);
35 35
         });
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     //  List all inactive users
145 145
     public function show($type)
146 146
     {
147
-        $route    = '';
147
+        $route = '';
148 148
 
149 149
         if($type !== 'inactive')
150 150
         {
@@ -168,17 +168,17 @@  discard block
 block discarded – undo
168 168
         $user  = new UserResource(User::findOrFail($id));
169 169
 
170 170
         //  Make sure that the user is not trying to deactivate someone with more permissions
171
-        if ($user->role_id < Auth::user()->role_id)
171
+        if($user->role_id < Auth::user()->role_id)
172 172
         {
173 173
             return abort(403);
174 174
         }
175 175
 
176 176
         //  Good to go - update user password
177 177
         $roleArr = [];
178
-        foreach ($roles as $role) {
179
-            if ($role->role_id == 1 && Auth::user()->role_id != 1) {
178
+        foreach($roles as $role) {
179
+            if($role->role_id == 1 && Auth::user()->role_id != 1) {
180 180
                 continue;
181
-            } else if ($role->role_id == 2 && Auth::user()->role_id > 1) {
181
+            } else if($role->role_id == 2 && Auth::user()->role_id > 1) {
182 182
                 continue;
183 183
             } else {
184 184
                 // $roleArr[$role->role_id] = $role->name;
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
             }
190 190
         }
191 191
 
192
-        Log::debug('Route ' . Route::currentRouteName() . ' visited by User ID-' . Auth::user()->user_id);
192
+        Log::debug('Route '.Route::currentRouteName().' visited by User ID-'.Auth::user()->user_id);
193 193
         return view('admin.userEdit', [
194 194
             'roles' => $roleArr,
195 195
             'user'  => $user->
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
         //  Update the user data
229 229
         $user = User::findOrFail($id);
230 230
 
231
-        if ($user->role_id < Auth::user()->role_id)
231
+        if($user->role_id < Auth::user()->role_id)
232 232
         {
233 233
             return abort(403);
234 234
         }
@@ -271,12 +271,12 @@  discard block
 block discarded – undo
271 271
         $user = User::find($request->user_id);
272 272
 
273 273
         //  Verify this is a valid user ID
274
-        if (!$user) {
274
+        if(!$user) {
275 275
             $success = false;
276 276
             $reason  = 'Cannot find user with this ID';
277 277
         }
278 278
         //  Make sure that the user is not trying to deactivate someone with more permissions
279
-        else if ($user->role_id < Auth::user()->role_id) {
279
+        else if($user->role_id < Auth::user()->role_id) {
280 280
             $success = false;
281 281
             $reason  = 'You cannot change password for a user with higher permissions that you.  If this user has locked themselves out, have then use the reset link on the login page.';
282 282
         }
@@ -289,11 +289,11 @@  discard block
 block discarded – undo
289 289
                 'password_expires' => $nextChange
290 290
             ]);
291 291
             $success = true;
292
-            $reason  = 'Password for ' . $user->full_name . ' successfully reset.';
292
+            $reason  = 'Password for '.$user->full_name.' successfully reset.';
293 293
         }
294 294
 
295
-        Log::debug('Route ' . Route::currentRouteName() . ' visited by User ID-' . Auth::user()->user_id);
296
-        Log::notice('User ID-' . $request->user_id . ' password chagned by ' . Auth::user()->user_id, [
295
+        Log::debug('Route '.Route::currentRouteName().' visited by User ID-'.Auth::user()->user_id);
296
+        Log::notice('User ID-'.$request->user_id.' password chagned by '.Auth::user()->user_id, [
297 297
             'success' => $success,
298 298
             'reason'  => $reason,
299 299
         ]);
Please login to merge, or discard this patch.
app/Http/Controllers/Installer/CategoriesController.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function __construct()
16 16
     {
17 17
         $this->middleware('auth');
18
-        $this->middleware(function ($request, $next) {
18
+        $this->middleware(function($request, $next) {
19 19
             $this->authorize('hasAccess', 'Manage Equipment');
20 20
             return $next($request);
21 21
         });
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             SystemCategories::find($id)->delete();
122 122
             return response()->json(['success' => true, 'reason' => 'Category Successfully Deleted']);
123 123
         }
124
-        catch (\Illuminate\Database\QueryException $e)
124
+        catch(\Illuminate\Database\QueryException $e)
125 125
         {
126 126
             return response()->json(['success' => false, 'reason' => 'Category still in use.  You must delete all systems attached to this category first.']);
127 127
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,8 @@
 block discarded – undo
77 77
     //  Delete an existing category - note this will fail if the category has systems assigned to it
78 78
     public function destroy($id)
79 79
     {
80
-        try {
80
+        try
81
+        {
81 82
             SystemCategories::find($id)->delete();
82 83
             return response()->json(['success' => true, 'reason' => 'Category Successfully Deleted']);
83 84
         }
Please login to merge, or discard this patch.