Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class ShellEnvironmentVariable extends ShellWord |
||
10 | { |
||
11 | protected $isEnvironmentVariable = true; |
||
12 | protected $useAssignOperator = true; |
||
13 | protected $nameUpperCase = true; |
||
14 | |||
15 | /** |
||
16 | * ShellArgument constructor. |
||
17 | * @param string $option |
||
18 | * @param ShellInterface|string $value |
||
19 | */ |
||
20 | public function __construct(string $option, $value) |
||
25 |