File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Pharaonic \Laravel \Executor \Console ;
4+
5+ class MakeExecuteCommand extends ExecuteMakeCommand
6+ {
7+ /**
8+ * The name and signature of the console command.
9+ *
10+ * @var string
11+ */
12+ protected $ signature = 'make:execute {name}
13+ {--path= : The path of the executor} ' ;
14+
15+ }
Original file line number Diff line number Diff line change 1010use Pharaonic \Laravel \Executor \Console \ExecuteMakeCommand ;
1111use Pharaonic \Laravel \Executor \Console \ExecuteRollbackCommand ;
1212use Pharaonic \Laravel \Executor \Console \ExecuteStatusCommand ;
13+ use Pharaonic \Laravel \Executor \Console \MakeExecuteCommand ;
1314
1415class ExecutorServiceProvider extends ServiceProvider
1516{
@@ -47,8 +48,9 @@ public function boot()
4748 );
4849
4950 $ this ->commands ([
50- ExecuteCommand ::class,
51+ MakeExecuteCommand ::class,
5152 ExecuteMakeCommand::class,
53+ ExecuteCommand::class,
5254 ExecuteRollbackCommand::class,
5355 ExecuteFreshCommand::class,
5456 ExecuteStatusCommand::class,
You can’t perform that action at this time.
0 commit comments