Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
13 | class StructureValidate extends Command { |
||
14 | |||
15 | protected function configure() { |
||
16 | $this->setName('structure:validate'); |
||
17 | $this->setDescription('Validate existing directory structure'); |
||
18 | $this->setHelp('This command validate existing directory structure in the specified path'); |
||
19 | $this->addArgument('path', InputArgument::OPTIONAL, 'path to target directory', getcwd()); |
||
20 | } |
||
21 | |||
22 | protected function execute(InputInterface $input, OutputInterface $output) { |
||
26 | } |
||
27 | |||
28 | } |