| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | final class StrictPropertyMatcher implements ChildMatcherInterface |
||
| 10 | { |
||
| 11 | |||
| 12 | private $properties; |
||
| 13 | |||
| 14 | 3 | public function __construct(string ...$properties) |
|
| 15 | { |
||
| 16 | 3 | $this->properties = $properties; |
|
| 17 | 3 | } |
|
| 18 | |||
| 19 | 3 | public function match($address, NodeValueInterface $value, NodeValueInterface $container): bool |
|
| 22 | } |
||
| 23 | } |
||
| 24 |