Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
HichemTab-tech committed Aug 11, 2023
1 parent 303fa42 commit 8608d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Laravel/Providers/TokensValidationProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ private function publishConfig(): void
{
$configPath = __DIR__.'/../config/tokensvalidation.php';
$publishPath = config_path('tokensvalidation.php');
$this->publishes([$configPath => $publishPath], 'config');
$this->publishes([$configPath => $publishPath], 'tokensvalidation-config');
$providerPath = __DIR__.'/../Providers/TokensValidationProvider.php';
$publishPath2 = app_path('Providers/TokensValidationProvider.php');
$this->publishes([$providerPath => $publishPath2], 'config');
$this->publishes([$providerPath => $publishPath2], 'tokensvalidation-provider');
$controllerPath = __DIR__.'/../Http/Controllers/InvitationAnswererController.php';
$publishPath3 = app_path('Http/Controllers/InvitationAnswererController.php');
$this->publishes([$controllerPath => $publishPath3], 'controllers');
Expand Down

0 comments on commit 8608d11

Please sign in to comment.