| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | protected static function initializeMembers() |
||
| 24 | { |
||
| 25 | new static('required', InputArgument::REQUIRED); |
||
| 26 | new static('optional', InputArgument::OPTIONAL); |
||
| 27 | new static('requiredArray', InputArgument::REQUIRED | InputArgument::IS_ARRAY); |
||
| 28 | new static('optionalArray', InputArgument::OPTIONAL | InputArgument::IS_ARRAY); |
||
| 29 | } |
||
| 30 | |||
| 31 | } |