1 | <?php |
||
28 | class ConfigValidateCommand extends Command |
||
29 | { |
||
30 | /** |
||
31 | * Set the command shortcut to be used in configuration |
||
32 | * |
||
33 | * @var string |
||
34 | */ |
||
35 | protected $command = 'config:validate'; |
||
36 | |||
37 | |||
38 | /** |
||
39 | * Configure the command |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | 13 | protected function configure() |
|
60 | |||
61 | /** |
||
62 | * Execute the command |
||
63 | * |
||
64 | * @param InputInterface $input |
||
65 | * @param OutputInterface $output |
||
66 | * |
||
67 | * @return void |
||
68 | */ |
||
69 | protected function execute(InputInterface $input, OutputInterface $output) |
||
75 | } |
||
76 |