Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class ShellArgument extends ShellWord |
||
15 | { |
||
16 | protected $isArgument = true; |
||
17 | protected $delimiter = ''; |
||
18 | |||
19 | /** |
||
20 | * ShellArgument constructor. |
||
21 | * @param ShellInterface|string $argument |
||
22 | */ |
||
23 | public function __construct($argument) |
||
24 | { |
||
25 | parent::__construct('', $argument); |
||
26 | } |
||
27 | |||
28 | protected function validate(): void |
||
34 | } |
||
35 | } |
||
36 |