Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class ShellShortOption extends ShellWord |
||
15 | { |
||
16 | protected $isShortOption = true; |
||
17 | protected $prefix = ShellWord::SHORT_OPTION_CONTROL; |
||
18 | |||
19 | /** |
||
20 | * ShellArgument constructor. |
||
21 | * @param string $option |
||
22 | * @param ShellInterface|string $value |
||
23 | * @throws ShellBuilderException |
||
24 | */ |
||
25 | public function __construct(string $option, $value) |
||
33 |