Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
5 | class EnvironmentArgumentResolver extends CustomArgumentResolver |
||
6 | { |
||
7 | private ScalarArgumentResolver $envVariableName; |
||
8 | |||
9 | /** |
||
10 | * @param ScalarArgumentResolver $envVariableName |
||
11 | */ |
||
12 | 1 | public function __construct(ScalarArgumentResolver $envVariableName) |
|
15 | 1 | } |
|
16 | |||
17 | 1 | protected function doResolve($context = null): bool|array|string |
|
22 |