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