1 | <?php |
||
13 | class PresenterCommand extends Command |
||
14 | { |
||
15 | /** |
||
16 | * The name of command. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $name = 'starter:presenter'; |
||
21 | |||
22 | /** |
||
23 | * The description of command. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $description = 'Create a new presenter.'; |
||
28 | |||
29 | /** |
||
30 | * The type of class being generated. |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $type = 'Presenter'; |
||
35 | |||
36 | /** |
||
37 | * Execute the command. |
||
38 | * |
||
39 | * @return void |
||
40 | */ |
||
41 | public function fire() |
||
65 | |||
66 | /** |
||
67 | * The array of command arguments. |
||
68 | * |
||
69 | * @return array |
||
70 | */ |
||
71 | public function getArguments() |
||
82 | |||
83 | /** |
||
84 | * The array of command options. |
||
85 | * |
||
86 | * @return array |
||
87 | */ |
||
88 | public function getOptions() |
||
100 | } |
||
101 |