Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | protected function execute(InputInterface $input, OutputInterface $output) |
||
28 | { |
||
29 | $generatePhonePrefixData = new GeneratePhonePrefixData(); |
||
30 | $generatePhonePrefixData->start( |
||
31 | $input->getArgument('InputDirectory'), |
||
32 | $input->getArgument('OutputDirectory'), |
||
33 | $output, |
||
34 | $input->getOption('expandCountries') |
||
35 | ); |
||
36 | |||
37 | return 0; |
||
38 | } |
||
40 |