| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class SearchPropertyNameResolverRegistry implements SearchPropertyNameResolverRegistryInterface |
||
| 14 | { |
||
| 15 | /** @var ConcatedNameResolverInterface[] */ |
||
| 16 | private $propertyNameResolvers = []; |
||
| 17 | |||
| 18 | public function addPropertyNameResolver(ConcatedNameResolverInterface $propertyNameResolver): void |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return ConcatedNameResolverInterface[] |
||
| 25 | */ |
||
| 26 | public function getPropertyNameResolvers(): array |
||
| 31 |