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