Skip to content

Commit a8b3b07

Browse files
committed
Removes unused command from ServiceProvider
1 parent b05a0e5 commit a8b3b07

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/Providers/OneTimeOperationsServiceProvider.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace TimoKoerber\LaravelOneTimeOperations\Providers;
44

55
use Illuminate\Support\ServiceProvider;
6-
use TimoKoerber\LaravelOneTimeOperations\Commands\OneTimeOperationDisposeCommand;
76
use TimoKoerber\LaravelOneTimeOperations\Commands\OneTimeOperationShowCommand;
87
use TimoKoerber\LaravelOneTimeOperations\Commands\OneTimeOperationsMakeCommand;
98
use TimoKoerber\LaravelOneTimeOperations\Commands\OneTimeOperationsProcessCommand;
@@ -16,14 +15,12 @@ public function boot(): void
1615

1716
$this->publishes([
1817
__DIR__.'/../../config/one-time-operations.php' => config_path('one-time-operations.php'),
19-
// __DIR__.'/../../database/migrations/create_one_time_operations_table.php' => database_path('migrations/'.date('Y_m_d_His').'_create_one_time_operations_table.php'),
2018
]);
2119

2220
if ($this->app->runningInConsole()) {
2321
$this->commands(OneTimeOperationsMakeCommand::class);
2422
$this->commands(OneTimeOperationsProcessCommand::class);
2523
$this->commands(OneTimeOperationShowCommand::class);
26-
$this->commands(OneTimeOperationDisposeCommand::class);
2724
}
2825
}
2926

0 commit comments

Comments
 (0)