| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | protected function configure() |
||
| 15 | { |
||
| 16 | $this->setName('GeneratePhonePrefixData'); |
||
| 17 | $this->setDescription('Generate phone prefix data files'); |
||
| 18 | $this->setDefinition( |
||
| 19 | array( |
||
| 20 | new InputArgument('InputDirectory', InputArgument::REQUIRED, 'The input directory containing the locale/region.txt files'), |
||
| 21 | new InputArgument('OutputDirectory', InputArgument::REQUIRED, 'The output source directory'), |
||
| 22 | new InputOption('expandCountries', null, InputOption::VALUE_NONE, 'Should we expand certain countries into separate files'), |
||
| 23 | ) |
||
| 40 |