| 1 | <?php |
||
| 17 | class Key |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Getopt. |
||
| 21 | * |
||
| 22 | * @var GetOpt |
||
| 23 | */ |
||
| 24 | protected $getopt; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Constructor. |
||
| 28 | */ |
||
| 29 | public function __construct(GetOpt $getopt) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Start. |
||
| 36 | */ |
||
| 37 | public function __invoke(): bool |
||
| 44 | |||
| 45 | // Get operands |
||
| 46 | public static function getOperands(): array |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Get options. |
||
| 53 | */ |
||
| 54 | public static function getOptions(): array |
||
| 58 | } |
||
| 59 |