File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 3
3
namespace TimoKoerber \LaravelOneTimeOperations \Providers ;
4
4
5
5
use Illuminate \Support \ServiceProvider ;
6
- use TimoKoerber \LaravelOneTimeOperations \Commands \OneTimeOperationDisposeCommand ;
7
6
use TimoKoerber \LaravelOneTimeOperations \Commands \OneTimeOperationShowCommand ;
8
7
use TimoKoerber \LaravelOneTimeOperations \Commands \OneTimeOperationsMakeCommand ;
9
8
use TimoKoerber \LaravelOneTimeOperations \Commands \OneTimeOperationsProcessCommand ;
@@ -16,14 +15,12 @@ public function boot(): void
16
15
17
16
$ this ->publishes ([
18
17
__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'),
20
18
]);
21
19
22
20
if ($ this ->app ->runningInConsole ()) {
23
21
$ this ->commands (OneTimeOperationsMakeCommand::class);
24
22
$ this ->commands (OneTimeOperationsProcessCommand::class);
25
23
$ this ->commands (OneTimeOperationShowCommand::class);
26
- $ this ->commands (OneTimeOperationDisposeCommand::class);
27
24
}
28
25
}
29
26
You can’t perform that action at this time.
0 commit comments