| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class ShellOption extends ShellWord |
||
| 10 | { |
||
| 11 | protected $isOption = true; |
||
| 12 | protected $prefix = ShellWord::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 |