| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class ArrayAccessValue implements ComparisonValueInterface |
||
| 11 | { |
||
| 12 | private ComparisonValueInterface $value; |
||
| 13 | private ComparisonValueInterface $key; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param ComparisonValueInterface $value |
||
| 17 | * @param ComparisonValueInterface $key |
||
| 18 | */ |
||
| 19 | 1 | public function __construct(ComparisonValueInterface $value, ComparisonValueInterface $key) |
|
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | 1 | public function get(ReflectionFunction $reflection) |
|
| 36 |