| 1 | <?php |
||
| 8 | trait OptionsRequiredTrait |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Check that the given options contain all required keys. |
||
| 12 | * |
||
| 13 | * @param array $options |
||
| 14 | * @param array $keys |
||
| 15 | * |
||
| 16 | * @return void |
||
| 17 | * |
||
| 18 | * @throws CommandException |
||
| 19 | * If any required options are missing. |
||
| 20 | */ |
||
| 21 | private function checkRequired(array $options, array $keys) |
||
| 29 | } |
||
| 30 |