Passed
Push — feature/job-status-transitions ( 931d64...1c9378 )
by Tristan
06:42 queued 02:33
created
routes/web.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -786,7 +786,7 @@  discard block
 block discarded – undo
786 786
         ->name('api.jobs.setJobStatus');
787 787
     Route::resource('jobs', 'Api\JobController')->only([
788 788
         'show', 'store', 'update', 'index'
789
-    ])->names([ // Specify custom names because default names collied with existing routes.
789
+    ])->names([// Specify custom names because default names collied with existing routes.
790 790
         'show' => 'api.jobs.show',
791 791
         'store' => 'api.jobs.store',
792 792
         'update' => 'api.jobs.update',
@@ -799,7 +799,7 @@  discard block
 block discarded – undo
799 799
 
800 800
     Route::resource('managers', 'Api\ManagerController')->only([
801 801
         'show', 'update'
802
-    ])->names([ // Specify custom names because default names collied with existing routes.
802
+    ])->names([// Specify custom names because default names collied with existing routes.
803 803
         'show' => 'api.managers.show',
804 804
         'update' => 'api.managers.update'
805 805
     ]);
Please login to merge, or discard this patch.