| Total Complexity | 6 | 
| Total Lines | 34 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 11 | final class VariableResolver implements VariableResolverInterface | ||
| 12 | { | ||
| 13 | /** @var ValueInterface[] */ | ||
| 14 | private array $values = []; | ||
| 15 | |||
| 16 | private ParserInterface $parser; | ||
| 17 | |||
| 18 | public function __construct(ParserInterface $parser) | ||
| 21 | } | ||
| 22 | |||
| 23 | public function resolve(string $str): string | ||
| 40 | } | ||
| 41 | |||
| 42 | public function addValue(string $variable, ValueInterface $variableValue): void | ||
| 47 |