| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | 1 | protected function configure() |
|
| 21 | { |
||
| 22 | 1 | $this |
|
| 23 | 1 | ->setName('elasticsearch:alias:list') |
|
| 24 | 1 | ->setDescription('List index aliases') |
|
| 25 | 1 | ->addArgument('index', InputArgument::REQUIRED, 'Which index ?') |
|
| 26 | 1 | ->addOption('client', null, InputOption::VALUE_REQUIRED, 'Client to use (if not default)', null) |
|
| 27 | ; |
||
| 28 | 1 | } |
|
| 29 | |||
| 53 |