Completed
Branch master (35851c)
by Jeremy
07:27
created
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
         $this->configureRateLimiting();
39 39
 
40
-        $this->routes(function () {
40
+        $this->routes(function() {
41 41
             Route::middleware('web')
42 42
                 ->group(base_path('routes/web.php'));
43 43
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     protected function configureRateLimiting()
56 56
     {
57
-        RateLimiter::for('api', function (Request $request) {
57
+        RateLimiter::for ('api', function(Request $request) {
58 58
             return Limit::perMinute(60);
59 59
         });
60 60
     }
Please login to merge, or discard this patch.