@@ -37,7 +37,7 @@ discard block |
||
| 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 |
||
| 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 | } |