1 | <?php |
||
12 | class BindingsCommand extends Command |
||
13 | { |
||
14 | /** |
||
15 | * The name of command. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $name = 'starter:bindings'; |
||
20 | |||
21 | /** |
||
22 | * The description of command. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $description = 'Add repository bindings to service provider.'; |
||
27 | |||
28 | /** |
||
29 | * The type of class being generated. |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $type = 'Bindings'; |
||
34 | |||
35 | /** |
||
36 | * Execute the command. |
||
37 | * |
||
38 | * @return null|false |
||
39 | */ |
||
40 | public function fire() |
||
67 | |||
68 | /** |
||
69 | * The array of command arguments. |
||
70 | * |
||
71 | * @return array |
||
72 | */ |
||
73 | public function getArguments() |
||
84 | |||
85 | /** |
||
86 | * The array of command options. |
||
87 | * |
||
88 | * @return array |
||
89 | */ |
||
90 | public function getOptions() |
||
102 | } |
||
103 |