Skip to content

Commit 8608d11

Browse files
fixes
1 parent 303fa42 commit 8608d11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Laravel/Providers/TokensValidationProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ private function publishConfig(): void
4141
{
4242
$configPath = __DIR__.'/../config/tokensvalidation.php';
4343
$publishPath = config_path('tokensvalidation.php');
44-
$this->publishes([$configPath => $publishPath], 'config');
44+
$this->publishes([$configPath => $publishPath], 'tokensvalidation-config');
4545
$providerPath = __DIR__.'/../Providers/TokensValidationProvider.php';
4646
$publishPath2 = app_path('Providers/TokensValidationProvider.php');
47-
$this->publishes([$providerPath => $publishPath2], 'config');
47+
$this->publishes([$providerPath => $publishPath2], 'tokensvalidation-provider');
4848
$controllerPath = __DIR__.'/../Http/Controllers/InvitationAnswererController.php';
4949
$publishPath3 = app_path('Http/Controllers/InvitationAnswererController.php');
5050
$this->publishes([$controllerPath => $publishPath3], 'controllers');

0 commit comments

Comments
 (0)