| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class SearchPropertyNameResolverRegistry implements SearchPropertyNameResolverRegistryInterface |
||
| 8 | { |
||
| 9 | /** @var ConcatedNameResolverInterface[] */ |
||
| 10 | private $propertyNameResolvers = []; |
||
| 11 | |||
| 12 | public function addPropertyNameResolver(ConcatedNameResolverInterface $propertyNameResolver): void |
||
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return ConcatedNameResolverInterface[] |
||
| 19 | */ |
||
| 20 | public function getPropertyNameResolvers(): array |
||
| 25 |