1 | <?php |
||
13 | class AddCommand extends Command |
||
14 | { |
||
15 | /** |
||
16 | * Command name |
||
17 | * @var string |
||
18 | */ |
||
19 | const NAME = 'add'; |
||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function configure() |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function execute(InputInterface $input, OutputInterface $output) |
||
45 | } |
||
46 |