Passed
Pull Request — master (#128)
by Cesar
02:55
created
routes/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
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'
Please login to merge, or discard this patch.
src/MagicLinkServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.