1 | <?php |
||
10 | class MigrateFromPlugin extends Command |
||
11 | { |
||
12 | const NAME = 'blogtaxonomy:migratefromplugin'; |
||
13 | |||
14 | /** |
||
15 | * @var string The console command name. |
||
16 | */ |
||
17 | protected $name = 'blogtaxonomy:migratefromplugin'; |
||
18 | |||
19 | /** |
||
20 | * @var string The console command description. |
||
21 | */ |
||
22 | protected $description = 'Migrate from another plugin to the Blog Taxonomy'; |
||
23 | |||
24 | /** |
||
25 | * Execute the console command. |
||
26 | * @return void |
||
27 | */ |
||
28 | public function handle() |
||
37 | |||
38 | /** |
||
39 | * Get the console command arguments. |
||
40 | * @return array |
||
41 | */ |
||
42 | protected function getArguments(): array |
||
52 | } |
||
53 |