Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class ShellExecutable extends ShellWord |
||
12 | { |
||
13 | protected $isArgument = true; |
||
14 | protected $spaceAfterValue = false; |
||
15 | protected $isEscaped = false; |
||
16 | protected $delimiter = ''; |
||
17 | protected $prefix = ''; |
||
18 | protected $suffix = ''; |
||
19 | |||
20 | public function __construct(string $executable) |
||
25 |