| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | protected function configure() |
||
| 40 | { |
||
| 41 | |||
| 42 | // initialize the command with the required/optional options |
||
| 43 | $this->setName(CommandNames::IMPORT_EXECUTE) |
||
| 44 | ->setDescription('Executes the operations passed as argument') |
||
| 45 | ->addArgument(InputArgumentKeysInterface::OPERATION_NAMES, InputArgument::IS_ARRAY|InputArgument::OPTIONAL, 'The operation(s) that has to be executed'); |
||
| 46 | |||
| 47 | // invoke the parent method |
||
| 48 | parent::configure(); |
||
| 49 | } |
||
| 51 |