@@ -6,7 +6,7 @@ |
||
6 | 6 | [ |
7 | 7 | 'middleware' => config('magiclink.middlewares'), |
8 | 8 | ], |
9 | - function () { |
|
9 | + function() { |
|
10 | 10 | Route::get( |
11 | 11 | config('magiclink.url.validate_path', 'magiclink').'/{token}', |
12 | 12 | 'MagicLink\Controllers\MagicLinkController@access' |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | { |
29 | 29 | $rateLimit = config('magiclink.rate_limit', 100); |
30 | 30 | |
31 | - RateLimiter::for( |
|
31 | + RateLimiter::for ( |
|
32 | 32 | 'magiclink', |
33 | 33 | fn () => $rateLimit === 'none' |
34 | 34 | ? Limit::none() |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | private function offerPublishing(): void |
56 | 56 | { |
57 | - if (! $this->app->runningInConsole()) { |
|
57 | + if ( ! $this->app->runningInConsole()) { |
|
58 | 58 | return; |
59 | 59 | } |
60 | 60 |