| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class StructureInit extends Command { |
||
| 14 | |||
| 15 | protected function configure() { |
||
| 16 | $this->setName('structure:init'); |
||
| 17 | $this->setDescription('Initialize new directory structure'); |
||
| 18 | $this->setHelp('This command initialize a 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 | } |