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