Passed
Push — feature/azure-webapp-pipeline-... ( a405ee...aa575c )
by Grant
07:04
created
routes/web.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -830,7 +830,7 @@  discard block
 block discarded – undo
830 830
         ->name('jobs.setJobStatus');
831 831
     Route::resource('jobs', 'Api\JobController')->only([
832 832
         'show', 'store', 'update', 'index'
833
-    ])->names([ // Specify custom names because default names collied with existing routes.
833
+    ])->names([// Specify custom names because default names collied with existing routes.
834 834
         'show' => 'jobs.show',
835 835
         'store' => 'jobs.store',
836 836
         'update' => 'jobs.update',
@@ -843,7 +843,7 @@  discard block
 block discarded – undo
843 843
 
844 844
     Route::resource('managers', 'Api\ManagerController')->only([
845 845
         'show', 'update'
846
-    ])->names([ // Specify custom names because default names collied with existing routes.
846
+    ])->names([// Specify custom names because default names collied with existing routes.
847 847
         'show' => 'managers.show',
848 848
         'update' => 'managers.update'
849 849
     ]);
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -773,8 +773,8 @@
 block discarded – undo
773 773
                     ->middleware('can:downloadApplicants,jobPoster')
774 774
                     ->name('admin.jobs.download.applicants');
775 775
 
776
-                 /* View Applicant Profile */
777
-                 Route::get('applicants/{applicant}', 'ApplicantProfileController@profile')
776
+                    /* View Applicant Profile */
777
+                    Route::get('applicants/{applicant}', 'ApplicantProfileController@profile')
778 778
                     ->middleware('can:view,applicant')
779 779
                     ->name('admin.applicants.profile');
780 780
             }
Please login to merge, or discard this patch.