| 1 | <?php |
||
| 11 | class Command extends SymfonyCommand |
||
| 12 | { |
||
| 13 | |||
| 14 | use ContainerAwareTrait; |
||
| 15 | |||
| 16 | protected $name; |
||
| 17 | |||
| 18 | protected $description; |
||
| 19 | |||
| 20 | public function __construct() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Get the console command arguments. |
||
| 30 | * |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | protected function getArguments() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Get the console command options. |
||
| 40 | * |
||
| 41 | * @return array |
||
| 42 | */ |
||
| 43 | protected function getOptions() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Specify the arguments and options on the command. |
||
| 50 | * |
||
| 51 | * @return void |
||
| 52 | */ |
||
| 53 | protected function specifyParameters() |
||
| 62 | |||
| 63 | } |
||
| 64 |