From 73e0e6c8ee65159e7b83d3ea683a317f63b377fa Mon Sep 17 00:00:00 2001 From: Italo Baeza Cabrera Date: Fri, 28 Oct 2022 16:36:00 -0300 Subject: [PATCH] Fixes static analysis line. --- src/WebAuthnServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WebAuthnServiceProvider.php b/src/WebAuthnServiceProvider.php index 47f9d21..1401e77 100644 --- a/src/WebAuthnServiceProvider.php +++ b/src/WebAuthnServiceProvider.php @@ -45,8 +45,8 @@ class WebAuthnServiceProvider extends ServiceProvider if ($this->app->runningInConsole()) { $this->publishesMigrations(static::MIGRATIONS); $this->publishes([static::ROUTES => $this->app->basePath('routes/webauthn.php')], 'routes'); - // @phpstan-ignore-next-line $this->publishes([static::CONFIG => $this->app->configPath('webauthn.php')], 'config'); + // @phpstan-ignore-next-line $this->publishes([static::CONTROLLERS => $this->app->path('Http/Controllers/WebAuthn')], 'controllers'); $this->publishes([static::JS => $this->app->resourcePath('js/vendor/webauthn')], 'js'); }