Skip to content

Commit c001249

Browse files
fixes
1 parent 12f691c commit c001249

File tree

9 files changed

+3
-3
lines changed

9 files changed

+3
-3
lines changed

src/Laravel/Console/TokensValidation/CreateCustomHandler.php renamed to src/Laravel/Console/Commands/TokensValidation/CreateCustomHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace HichemtabTech\TokensValidation\Laravel\Console\TokensValidation;
3+
namespace HichemtabTech\TokensValidation\Laravel\Console\Commands\TokensValidation;
44

55
use Illuminate\Console\Command;
66
use Illuminate\Support\Facades\File;

src/Laravel/Providers/TokensValidationProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ private function publishConfig(): void
4747
$controllerPath = __DIR__.'/../Http/Controllers/InvitationAnswererController.php';
4848
$publishPath3 = app_path('Http/Controllers/InvitationAnswererController.php');
4949
$this->publishes([$controllerPath => $publishPath3], 'controllers');
50-
$consolePath = __DIR__.'/../Console';
51-
$publishPath4 = app_path('Console');
50+
$consolePath = __DIR__.'/../Console/Commands';
51+
$publishPath4 = app_path('Console/Commands');
5252
$this->publishes([$consolePath => $publishPath4], 'hichemtab-tech-tokensvalidation');
5353
}
5454
}

0 commit comments

Comments
 (0)