Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class ShellShortOption extends ShellWord |
||
10 | { |
||
11 | protected $isShortOption = true; |
||
12 | protected $prefix = ShellWord::SHORT_OPTION_CONTROL; |
||
13 | |||
14 | /** |
||
15 | * ShellArgument constructor. |
||
16 | * @param string $option |
||
17 | * @param ShellInterface|string $value |
||
18 | */ |
||
19 | public function __construct(string $option, $value) |
||
27 |