Passed
Pull Request — master (#128)
by Cesar
02:56
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
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     private function registerRateLimit(): void
28 28
     {
29
-        RateLimiter::for(
29
+        RateLimiter::for (
30 30
             'magiclink',
31 31
             fn () => Limit::perMinute(config('magiclink.rate_limit', 100))
32 32
         );
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     private function offerPublishing(): void
52 52
     {
53
-        if (! $this->app->runningInConsole()) {
53
+        if ( ! $this->app->runningInConsole()) {
54 54
             return;
55 55
         }
56 56
 
Please login to merge, or discard this patch.